1
1
openmpi/config
Jeff Squyres 148ae6d6e3 This commit unifies the configury of some verbs-lovin' components.
* Add new configure command line options and deprecate some old ones:
   * --with-verbs replaces --with-openib
   * --with-verbs-libdir replaces --with-openib-libdir
 * If you specify --with-openib[-libdir] without
   --with-verbs[-libdir], you'll get a "these options have been
   deprecated!" warning, but then they'll act just like
   --with-verbs[--libdir]. 

  '''Sidenote:''' Note that we are not renaming any components at this
  time, nor are we renaming the top-level OMPI_CHECK_OPENIB m4 macro
  (which is pretty strongly tied to the openib BTL and is bastaridzed
  by the ofud BTL).  Note that there will likely be more changes in
  this area coming soon (next week?) when some long-standing changes
  move to the SVN trunk: some openib BTL infrastructure will move to
  ompi/mca/common, and its configury gets split up / refactored.

We extend our philosophy of other --with-<foo> configure options of
--with-verbs to ''all'' verbs-lovin components:

 * If you specify --with-verbs, then all verbs-lovin' components must
   configure successfully (or abort).  This currently means: OOB ud,
   BTL ofud, BTL openib.
 * If you specify --with-verbs=DIR, then all verbs-lovin' component
   must configure successfully (or abort), and will use DIR to find
   verbs headers and libraries.
 * If you specify --without-verbs, then all verbs-lovin' components
   will be ignored.

This commit also fixes a problem where the --with-openib=DIR form
would not use DIR for ''all'' verbs-lovin' components (I think only
BTL openib and BTL ofud used that DIR).  Now all of them do, as does
hwloc (because hwloc has some !OpenFabrics helper functions that
require ibv types from verbs.h).

There's a little new m4 infrastructure worth mentioning:

 * If you create a new verbs-lovin' component (i.e., a component that
   need verbs), your configure.m4 should
   AC_REQUIRE([OPAL_CHECK_VERBS_DIR]). 
 * You can then use three global shell variables: $opal_want_verbs,
   $opal_verbs_dir, $opal_verbs_libdir, which will be set as follows:
   * opal_want_verbs will be "yes" and opal_verbs_dir and
     opal_verbs_libdir will both be set to directory values, '''OR'''
   * opal_want_verbs will be "no" and opal_verbs_dir and
     opal_verbs_libdir will both be set empty

This commit was SVN r26640.
2012-06-22 19:53:56 +00:00
..
c_get_alignment.m4 Update copyright. 2009-07-21 12:40:43 +00:00
c_weak_symbols.m4 Per http://www.open-mpi.org/community/lists/devel/2010/11/8671.php, 2010-11-12 23:22:11 +00:00
distscript.csh Missed updating these 2 scripts yesterday 2011-02-17 14:01:10 +00:00
libltdl-preopen-error.diff WARNING: Work on the temp branch being merged here encountered problems with bugs in subversion. Considerable effort has gone into validating the branch. However, not all conditions can be checked, so users are cautioned that it may be advisable to not update from the trunk for a few days to allow MTT to identify platform-specific issues. 2010-09-17 23:04:06 +00:00
ltmain_pgi_tp.diff Patch ltmain.sh in autogen.sh per this Libtool thread: 2010-08-25 19:40:17 +00:00
Makefile.am Remove config/libtool-sun-fortran.diff line from Makefile.am, since it was deleted. 2010-11-23 16:10:52 +00:00
Makefile.options Rollback the last two commits. 2008-10-28 17:22:29 +00:00
ompi_check_broken_qsort.m4 This is a very large change to rename several #define values from 2009-05-06 20:11:28 +00:00
ompi_check_compiler_works.m4 == Highlights == 2012-04-18 15:57:29 +00:00
ompi_check_func_lib.m4 Fix problem noted by Sebastian Andrzej Siewior; we should not be using AS_VAR_GET. Per advice from Ralf, change them all to AS_VAR_IF and AS_VAR_COPY. CMR:v1.5. A separate patch has to be created for v1.4 because files have moved around. 2010-08-27 22:48:57 +00:00
ompi_check_icc.m4 Rollback the last two commits. 2008-10-28 17:22:29 +00:00
ompi_check_package.m4 Fix long-standing typo -- that line should be a shell comment (!). 2012-06-22 19:30:08 +00:00
ompi_check_portals4.m4 * Add shell of functionality required for supporting Portals4 2010-10-14 22:49:09 +00:00
ompi_check_ps.m4 Rollback the last two commits. 2008-10-28 17:22:29 +00:00
ompi_check_vendor.m4 Added notes about Solaris Studio and Ubuntu. Also added check for gccfss being the compiler and abort configure if it is. 2012-02-10 19:25:23 +00:00
ompi_check_withdir.m4 Really fix the quoting this time. Really. 2009-02-04 23:04:21 +00:00
ompi_config_pthreads.m4 Fix some fortran flags variable names, and fortran configury C test 2012-04-23 15:28:26 +00:00
ompi_config_solaris_threads.m4 Fix some fortran flags variable names, and fortran configury C test 2012-04-23 15:28:26 +00:00
ompi_config_subdir_args.m4 Rollback the last two commits. 2008-10-28 17:22:29 +00:00
ompi_config_subdir.m4 Fix some fortran flags variable names, and fortran configury C test 2012-04-23 15:28:26 +00:00
ompi_contrib.m4 If configure of a contributed component fails, abort if it's requested via command line switch 2012-01-30 12:09:06 +00:00
ompi_ensure_contains_optflags.m4 rename macros ompi_check_optflags and ompi_make_stripped_flags based on comments in #2072 2009-10-28 10:51:59 +00:00
ompi_ext.m4 == Highlights == 2012-04-18 15:57:29 +00:00
ompi_find_type.m4 Fix problem noted by Sebastian Andrzej Siewior; we should not be using AS_VAR_GET. Per advice from Ralf, change them all to AS_VAR_IF and AS_VAR_COPY. CMR:v1.5. A separate patch has to be created for v1.4 because files have moved around. 2010-08-27 22:48:57 +00:00
ompi_get_libtool_linker_flags.m4 Per http://www.open-mpi.org/community/lists/devel/2010/11/8671.php, 2010-11-12 23:22:11 +00:00
ompi_interix.m4 Rollback the last two commits. 2008-10-28 17:22:29 +00:00
ompi_lang_link_with_c.m4 == Highlights == 2012-04-18 15:57:29 +00:00
ompi_load_platform.m4 Remove one more non-portable test "==" operator 2012-02-20 20:41:05 +00:00
ompi_mca_priority_sort.pl WARNING: Work on the temp branch being merged here encountered problems with bugs in subversion. Considerable effort has gone into validating the branch. However, not all conditions can be checked, so users are cautioned that it may be advisable to not update from the trunk for a few days to allow MTT to identify platform-specific issues. 2010-09-17 23:04:06 +00:00
ompi_mca.m4 Per http://www.open-mpi.org/community/lists/devel/2010/11/8671.php, 2010-11-12 23:22:11 +00:00
ompi_microsoft.m4 Rollback the last two commits. 2008-10-28 17:22:29 +00:00
ompi_save_version.m4 Remove spurrious quotes; correct descriptions in AC_DEFINE's 2012-02-03 23:02:24 +00:00
ompi_setup_component_package.m4 Make help strings for configure =DIR types of options better/more accurate 2009-04-10 22:10:07 +00:00
ompi_strip_optflags.m4 rename macros ompi_check_optflags and ompi_make_stripped_flags based on comments in #2072 2009-10-28 10:51:59 +00:00
ompi_try_assemble.m4 Rollback the last two commits. 2008-10-28 17:22:29 +00:00
opal_check_verbs.m4 This commit unifies the configury of some verbs-lovin' components. 2012-06-22 19:53:56 +00:00
opal_get_version.m4 Minor update for something that has been bugging me for quite a while: 2011-02-16 22:53:23 +00:00
opal_get_version.m4sh Minor update for something that has been bugging me for quite a while: 2011-02-16 22:53:23 +00:00