Shiqing Fan
74120b46c1
Need to check another ofed library.
...
This commit was SVN r23375.
2010-07-12 16:15:22 +00:00
Shiqing Fan
e3be90ff22
Update CMake modules, adding initial support for openib.
...
This commit was SVN r23373.
2010-07-12 15:28:37 +00:00
Shiqing Fan
e32159d118
Updates and fixes for Fortran bindings on Windows, including two missing feature tests and CMake scripts improvements.
...
This commit was SVN r23279.
2010-06-18 13:03:16 +00:00
Shiqing Fan
d391c57b0f
A more proper fix for the HANDLE definition.
...
This commit was SVN r23269.
2010-06-14 14:17:07 +00:00
Samuel Gutierrez
2fb7c344fc
Added a new System V (sysv) shared memory component for Open MPI.
...
Configure Option:
--enable-sysv
MCA Parameter:
mpi_common_sm
mpi_common_sm accepts a comma delimited list of: [sysv],mmap (order
dependent). The first component that is successfully selected is used. For
example, -mca mpi_common_sm sysv,mmap will first try sysv. If sysv is not
successfully selected, then mmap will be used. mmap will be used if
mpi_common_sm is not provided.
Notes:
Please make certain that your system's shmmax limit, or equivalent, is larger
than mpool_sm_min_size. Otherwise, shmget may fail.
This commit was SVN r23260.
2010-06-09 16:58:52 +00:00
Shiqing Fan
8adea20297
Fix a variable name.
...
This commit was SVN r23231.
2010-06-01 17:37:58 +00:00
Shiqing Fan
12775c6b9a
Add corresponding option for notifier on Windows.
...
This commit was SVN r23195.
2010-05-21 15:23:44 +00:00
Shiqing Fan
077f6e6398
Type casts for building dynamical Fortran libraries.
...
And export correct function names.
This commit was SVN r23020.
2010-04-22 15:48:27 +00:00
Shiqing Fan
d1e66bdd01
Use variables instead of hard-coded compiler flags, in order to support various C/C++ compilers on Windows.
...
This commit was SVN r23016.
2010-04-21 12:45:00 +00:00
Shiqing Fan
e539322807
Move definitions to the main config file.
...
This commit was SVN r23015.
2010-04-21 09:17:10 +00:00
Shiqing Fan
b4dc28f075
Fix typo from last commit.
...
This commit was SVN r22960.
2010-04-13 00:35:20 +00:00
Shiqing Fan
a998abb746
Get rid of a CMake warning that caused by the change of the CMake policy in the latest version (policy CMP0015), the link directory must be absolute path.
...
This commit was SVN r22959.
2010-04-13 00:11:25 +00:00
Shiqing Fan
9d3613c259
Only check the necessary headers and others on Windows, so that to speed up the configuration a lot.
...
Set up the integer kind family for f77 build.
This commit was SVN r22894.
2010-03-26 16:01:36 +00:00
Shiqing Fan
3943fdc355
Fix the new thread configure options on Windows.
...
This commit was SVN r22849.
2010-03-18 15:14:11 +00:00
Shiqing Fan
e1c009932b
Add a few more fortran compile flags, and enable dynamic build for f77 library now.
...
This commit was SVN r22720.
2010-02-26 07:55:32 +00:00
Shiqing Fan
3ab892ad8a
Add exclude pattern for installing directory.
...
This commit was SVN r22610.
2010-02-12 10:24:22 +00:00
Shiqing Fan
fe39e3a993
Check the Fortran compiler base on the build type (32 or 64 bit build), and set corresponding VC environment.
...
This commit was SVN r22568.
2010-02-07 23:16:06 +00:00
Shiqing Fan
d5adf6ec25
Add the executable extension.
...
This commit was SVN r22565.
2010-02-05 17:56:18 +00:00
Shiqing Fan
1c096aece9
Preset the environment for Intel Fortran and G95.
...
This commit was SVN r22563.
2010-02-05 15:37:20 +00:00
Shiqing Fan
47c8f3dd69
set the compiler name only when we need it.
...
This commit was SVN r22561.
2010-02-05 11:15:00 +00:00
Shiqing Fan
84ecb6a81a
Set up the correct compiler executables in the right place.
...
This commit was SVN r22560.
2010-02-04 23:02:17 +00:00
Shiqing Fan
1839a21db4
Make it possible to let user select the Fortran compiler options that they use, so that to support different Fortran compilers on Windows. Not the best solution, but the easiest.
...
This commit was SVN r22540.
2010-02-03 18:18:15 +00:00
Shiqing Fan
4040d40c82
Define YY_NO_UNISTD_H in the source file property. It's defined in opal_include_bottom.h, but when the lex files are generated on Windows, the unistd.h is include before opal_include_bottom.h.
...
This commit was SVN r22521.
2010-01-31 20:39:43 +00:00
Shiqing Fan
c29a668e37
Remove flex.exe and its license file from the tarball.
...
cmr:v1.4
cmr:v1.5
This commit was SVN r22469.
2010-01-22 16:40:13 +00:00
Shiqing Fan
3353da027d
Remove the unused scripts.
...
This commit was SVN r22455.
2010-01-19 18:09:33 +00:00
Shiqing Fan
ef5b75598e
Update and clean up the main feature test script, using the new macros.
...
This commit was SVN r22453.
2010-01-19 17:32:10 +00:00
Shiqing Fan
29e7703d2c
Update several CMake scripts to use the new macros.
...
This commit was SVN r22452.
2010-01-19 17:28:49 +00:00
Shiqing Fan
949dfd2ab3
Add a few new CMake modules, that will change the way of configure:
...
ompi_define.cmake: a few macros for write the configure template file in different ways.
ompi_base_checks.cmake: defines a few wrapper macros for CMake checks.
This commit was SVN r22451.
2010-01-19 17:24:38 +00:00
Shiqing Fan
872a4047ba
Fix the bug that caused by ADD_DEPENDENCIES() from different version of CMake.
...
In CMake 2.6 and earlier, this function add dependencies for targets and also link the target libraries automatically, but in CMake 2.8,this behavior has been changed, i.e. it will only add the dependencies but no link, which will cause linking errors at compilation time.
This commit was SVN r22405.
2010-01-14 18:10:20 +00:00
Shiqing Fan
e6c0133d08
Add a definition for CMake to disable KNEM on Windows.
...
This commit was SVN r22345.
2009-12-28 16:13:41 +00:00
Shiqing Fan
11ad25fa77
A few windows fixes:
...
Add a missing value for the configure file.
Fix the bug that generating wrong svn version number.
Correct the wrong string length of the headnode name.
cmr:v1.5
cmr:v1.3.4
This commit was SVN r22219.
2009-11-18 09:43:47 +00:00
Shiqing Fan
6f8d0a1ab8
Update a few CMake scripts.
...
Add Program Database (pdb) files for installation for debug build.
This commit was SVN r22188.
2009-11-03 10:40:58 +00:00
Shiqing Fan
48dd7ff7d0
Get rid of the shadow file for mpi.h.in on Windows.
...
This commit was SVN r22154.
2009-10-28 15:49:01 +00:00
Shiqing Fan
63cdfc0ab1
Get rid of several shadow files for windows build, use the same input file as on Linux.
...
This commit was SVN r22145.
2009-10-27 18:22:14 +00:00
Shiqing Fan
5f1423c14b
Update the mpi.h.cmake config input file for Windows).
...
This commit was SVN r22141.
2009-10-26 13:24:02 +00:00
Shiqing Fan
14e6952482
Update two CMake find modules.
...
This commit was SVN r22054.
2009-10-06 08:01:37 +00:00
Shiqing Fan
1b6db85988
Complete the support for building on UNC path.
...
This commit was SVN r21897.
2009-08-27 07:57:26 +00:00
Shiqing Fan
f4af9542dd
Change the path into standard Windows style, so that we can build on UNC path also.
...
This commit was SVN r21886.
2009-08-26 12:01:19 +00:00
Shiqing Fan
f3beb2bc07
Add a short comment about how this module checks mca subdirectories, and a few typo.
...
This commit was SVN r21806.
2009-08-12 09:44:11 +00:00
Shiqing Fan
fb4be6fad7
First step to enable DSO build on Windows.
...
- add a cmake module for searching libltdl libraries and headers
- a configure option to enable DSO build, default OFF.
- update a few source files for including correct header
and loading correct mca libraries path/suffix.
This commit was SVN r21804.
2009-08-12 08:52:48 +00:00
Rainer Keller
76469ea64a
- Change the property of a few files, that obviously
...
don't need to be svn:executable...
This commit was SVN r21786.
2009-08-11 01:40:00 +00:00
Shiqing Fan
503f2817b3
Corresponding changes to r21641 and r21642 for Windows.
...
- Add a CMake macro for checking OPAL_MAX_XXX values, re-written from OPAL_WITH_OPTION_MIN_MAX_VALUE m4 function.
- Definition prefix changes and additional datatype alignments checking.
- Finish the datatype splitting on Windows too. :-)
This commit was SVN r21649.
The following SVN revision numbers were found above:
r21641 --> open-mpi/ompi@6c5532072a
r21642 --> open-mpi/ompi@c971c09eb6
2009-07-13 17:39:41 +00:00
Shiqing Fan
ed38e3eb9f
Refresh mpi.h.cmake, according to r21642.
...
This commit was SVN r21647.
The following SVN revision numbers were found above:
r21642 --> open-mpi/ompi@c971c09eb6
2009-07-13 17:29:51 +00:00
Shiqing Fan
9117785f9e
Add an option, so that we can easily disable CCP support when necessary.
...
This commit was SVN r21614.
2009-07-08 12:22:14 +00:00
Shiqing Fan
0b56a8a4d5
Enable IPv6 on Windows by default, and fix two type casts for IPv6 operations.
...
This commit was SVN r21586.
2009-07-02 14:41:03 +00:00
Shiqing Fan
0ee21848b5
Check the socket data types more properly.
...
This commit was SVN r21585.
2009-07-02 14:38:55 +00:00
Shiqing Fan
bb7bf0a3ed
Set up compiler information at configuration time.
...
This commit was SVN r21509.
2009-06-24 19:05:42 +00:00
Shiqing Fan
70158790e5
First commit to support MPI Extended Interface on Windows.
...
This commit was SVN r21344.
2009-06-01 19:24:39 +00:00
Rainer Keller
b572dc3591
- As discussed revert r21330, Fortran-configure info should
...
not end up in OPAL
- Will post an updated patch for the OMPI_ALIGNMENT_ parts (within C).
This commit was SVN r21342.
The following SVN revision numbers were found above:
r21330 --> open-mpi/ompi@95596d1814
2009-06-01 19:02:34 +00:00
Rainer Keller
95596d1814
- Move alignment and size output generated by configure-tests
...
into the OPAL namespace, eliminating cases like opal/util/arch.c
testing for ompi_fortran_logical_t.
As this is processor- and compiler-related information
(e.g. does the compiler/architecture support REAL*16)
this should have been on the OPAL layer.
- Unifies f77 code using MPI_Flogical instead of opal_fortran_logical_t
- Tested locally (Linux/x86-64) with mpich and intel testsuite
but would like to get this week-ends MTT output
- PLEASE NOTE: configure-internal macro-names and
ompi_cv_ variables have not been changed, so that
external platform (not in contrib/) files still work.
This commit was SVN r21330.
2009-05-30 15:54:29 +00:00
Shiqing Fan
19ecbfa324
A quick and simple fix for Windows supporting deprecated functionality warnings, let MTT run again first. MS compiler attributes check has to be accomplished in order to fully enable this feature on Windows.
...
This commit was SVN r21267.
2009-05-23 22:12:54 +00:00
Shiqing Fan
88b600c24d
set executable property for windows flex.
...
This commit was SVN r21211.
2009-05-12 09:06:29 +00:00
Greg Koenig
60485ff95f
This is a very large change to rename several #define values from
...
OMPI_* to OPAL_*. This allows opal layer to be used more independent
from the whole of ompi.
NOTE: 9 "svn mv" operations immediately follow this commit.
This commit was SVN r21180.
2009-05-06 20:11:28 +00:00
Shiqing Fan
cd565923d3
Completely remove ltdl support for Windows build.
...
This commit was SVN r21170.
2009-05-05 18:59:13 +00:00
Shiqing Fan
001c05e83c
Set and check variable "BUILD_SHARED_LIBS" in correct order.
...
This commit was SVN r21163.
2009-05-05 14:35:15 +00:00
Shiqing Fan
c3380e9df2
put all generated files in the binary directory.
...
This commit was SVN r21160.
2009-05-05 13:50:48 +00:00
Shiqing Fan
5856cedc2b
Remove libltdl related files and folders.
...
Add a find module for libltdl, so that user can still enable dlopen support (default off), and use natively installed libtool.
This commit was SVN r21146.
2009-05-04 17:35:48 +00:00
Shiqing Fan
7036e0e685
Cache the found path of CCP libraries.
...
This commit was SVN r21083.
2009-04-28 10:38:35 +00:00
Shiqing Fan
2c1680b320
Add copyright file for redistributing flex.
...
This commit was SVN r21072.
2009-04-24 16:52:17 +00:00
Shiqing Fan
4067d739b4
Add a new CMake module for finding Windows CCP libraries, so that we can remove the library files in the source tree.
...
This commit was SVN r21071.
2009-04-24 16:51:31 +00:00
Shiqing Fan
8bb6bb97a4
Make the compiler wrapper find the correct version of libraries, i.e. debug or release version based on build type.
...
This commit was SVN r20852.
2009-03-24 10:42:37 +00:00
Shiqing Fan
0fcc23c2ad
Read the exclude file list before we add them into the project. Prepare for the upcoming windows changes in common_sm_*.
...
This commit was SVN r20834.
2009-03-20 15:57:52 +00:00
Shiqing Fan
696416057d
Put the debug libraries under 'debug' sub-directory, and set the correct path to find them.
...
This commit was SVN r20830.
2009-03-19 17:11:47 +00:00
Shiqing Fan
55161a15cc
Set OMPI_DECLSPEC in CMake files, so that applications that using Open MPI libraries don't need to define OMPI_IMPORTS explicitly.
...
This commit was SVN r20829.
2009-03-19 17:09:24 +00:00
Shiqing Fan
99b415a7e0
On windows, the mca_common_* libraries should be installed in bin, otherwise the libraries that are dependent on them, e.g. shared build of mca_btl_sm, couldn't be loaded at runtime. This commit fixes the problem.
...
This commit was SVN r20735.
2009-03-05 14:57:35 +00:00
Shiqing Fan
b01d33fff8
Restore one PROJECT command, which is used for linking C object with Fortran code.
...
This commit was SVN r20717.
2009-03-04 14:57:12 +00:00
Shiqing Fan
4d3f801dbd
Try to find the installed flex on current windows system first, if it's not there, just use the one comes along with the source.
...
This commit was SVN r20642.
2009-02-26 13:03:53 +00:00
Shiqing Fan
2326f14be5
Remove the unnecessary PROJECT command, I somehow misunderstood how it should be used on Windows....
...
This commit was SVN r20634.
2009-02-25 16:07:43 +00:00
Shiqing Fan
aa2804de75
Refresh mpi.h.cmake according to the changes to mpi.h.in.
...
Add a few compiler flags which were missing.
This commit was SVN r20633.
2009-02-25 12:51:29 +00:00
Terry Dontje
0178b6c45f
Added padding to predefined handle structures to maintain library version to
...
version compatibility.
This commit was SVN r20627.
2009-02-24 17:17:33 +00:00
Shiqing Fan
252c8d1873
Add missing brackets, apparently a bug for shared build on windows.
...
This commit was SVN r20623.
2009-02-23 17:28:39 +00:00
Shiqing Fan
2f1461419c
Add a new feature for checking mca subdirectories, i.e. detecting if there is an exclude file list which indicates the files that shouldn't be added to the source list. By default, the CMake build system will simply add all source files in the required sub folders, without knowing which files have to be excluded. The first use of it is in plm/base/.windows.
...
And clean up the nested variable names, in order to make it readable.
This commit was SVN r20498.
2009-02-10 17:20:13 +00:00
Shiqing Fan
ff7ca43dd1
Update two configuration files for windows build.
...
This commit was SVN r20450.
2009-02-05 16:39:40 +00:00
Shiqing Fan
a5281f0434
- 1/4 commit for Windows Visual Studio and CCP support:
...
CMakeLists and .windows files.
In contribs preconfigured and precompiled parts.
This commit was SVN r20108.
2008-12-10 20:59:20 +00:00
George Bosilca
5079fd77ea
Add some files to the Windows distribution.
...
This commit was SVN r17053.
2008-01-04 23:10:00 +00:00
George Bosilca
02d8e721be
Include all new files.
...
This commit was SVN r16134.
2007-09-14 23:16:12 +00:00
George Bosilca
71393fdfd9
Script for generating a Windows specific patch.
...
This commit was SVN r16131.
2007-09-14 21:25:56 +00:00
George Bosilca
fa40fd61f8
Update the Windows related project and headers files.
...
This commit was SVN r16128.
2007-09-14 21:18:52 +00:00
Shiqing Fan
7e7e555ee8
- It's not a good idea to put them here right now.
...
- will be added into a tar ball later on, or we try to find another way to generate header files for windows.
This commit was SVN r15751.
2007-08-03 11:53:09 +00:00
Shiqing Fan
84bab40c31
- Header and lex files used for Windows implementation.
...
This commit was SVN r15679.
2007-07-30 10:36:49 +00:00
George Bosilca
5fb084d218
The full archive of files needed to compile natively under
...
Windows. One should use at least the latest Visual Studio
Express in order to be able to compile succesfully.
This commit was SVN r15604.
2007-07-25 06:07:16 +00:00
George Bosilca
e2666f8394
3 ways to generate OMPI binaries on Windows.
...
deploy: will create a full binary distribution (.msi file)
ompi-small: will create an update binary distribution(
no include files, nothing else except the libs and execs).
ompi_install.sh: sh script to install manually into a specific
target directory.
This commit was SVN r12589.
2006-11-13 23:28:41 +00:00