
.ompi_ignored to allow other developers to test with it. It is expected that we'll remove the .ompi_ignore here soon, and simultaneously remove the hwloc 1.2.2ompi component. There was one very minor patch added to stock hwloc 1.3.1 in hwloc/config/hwloc.m4: {{{ --- hwloc-1.3.1/config/hwloc.m4 2011-12-14 +++ ompi3/opal/mca/hwloc/hwloc131/hwloc/config/hwloc.m4 @@ -583,6 +583,7 @@ ]) fi AC_SUBST(HWLOC_PCI_LIBS) + HWLOC_LIBS="$HWLOC_LIBS $HWLOC_PCI_LIBS" # If we asked for pci support but couldn't deliver, fail AS_IF([test "$enable_pci" = "yes" -a "$hwloc_pci_happy" = "no"], [AC_MSG_WARN([Specified --enable-pci switch, but could not]) }}} This will be pushed upstream to hwloc. This commit was SVN r25706.
45 строки
853 B
C
45 строки
853 B
C
/*
|
|
* Copyright (c) 2011 Cisco Systems, Inc. All rights reserved.
|
|
*/
|
|
#include "opal_config.h"
|
|
#include "opal/constants.h"
|
|
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
#include <sys/types.h>
|
|
#endif
|
|
|
|
|
|
#ifdef WIN32
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#include <windows.h>
|
|
#undef WIN32_LEAN_AND_MEAN
|
|
#endif
|
|
#ifdef HAVE_SYS_TIME_H
|
|
#include <sys/time.h>
|
|
#endif
|
|
#include <sys/queue.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#ifndef WIN32
|
|
#ifdef HAVE_UNISTD_H
|
|
#include <unistd.h>
|
|
#endif
|
|
#endif
|
|
#include <errno.h>
|
|
#include <signal.h>
|
|
#include <string.h>
|
|
#include <assert.h>
|
|
#include <time.h>
|
|
|
|
#include "opal/class/opal_object.h"
|
|
#include "opal/threads/mutex.h"
|
|
#include "opal/threads/threads.h"
|
|
#include "opal/util/output.h"
|
|
#include "opal/util/argv.h"
|
|
#include "opal/util/fd.h"
|
|
#include "opal/mca/base/mca_base_param.h"
|
|
|
|
#include "hwloc131.h"
|
|
#include "opal/mca/hwloc/base/base.h"
|
|
|