| 1 | # Copyright David Abrahams 2008. Distributed under the Boost
|
|---|
| 2 | # Software License, Version 1.0. (See accompanying
|
|---|
| 3 | # file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|---|
| 4 | using gcc : : : <cxxflags>-fPIC ;
|
|---|
| 5 | using mpi
|
|---|
| 6 | : /opt/mpich/ch-p4/bin/mpicxx # executable
|
|---|
| 7 | :
|
|---|
| 8 | # These flags are what the MPI autoconfiguration generates, sorted
|
|---|
| 9 | # with duplicates removed, plus <link>static.
|
|---|
| 10 | # <cxxflags>-O2
|
|---|
| 11 | # <cxxflags>-Wall
|
|---|
| 12 | # <cxxflags>-c
|
|---|
| 13 | # <cxxflags>-fexceptions
|
|---|
| 14 | # <cxxflags>-fmessage-length=0
|
|---|
| 15 | # <cxxflags>-fno-strict-aliasing
|
|---|
| 16 | # <cxxflags>-g
|
|---|
| 17 | # <define>HAVE_MPI_CPP
|
|---|
| 18 | # <define>HAVE_STDARG_H=1
|
|---|
| 19 | # <define>HAVE_STDLIB_H=1
|
|---|
| 20 | # <define>HAVE_STRING_H=1
|
|---|
| 21 | # <define>HAVE_UNISTD_H=1
|
|---|
| 22 | # <define>MALLOC_RET_VOID=1
|
|---|
| 23 | # <define>USE_STDARG=1
|
|---|
| 24 | # <define>_FORTIFY_SOURCE=2
|
|---|
| 25 | # <find-static-library>mpich
|
|---|
| 26 | # <find-static-library>pmpich++
|
|---|
| 27 | # <find-static-library>pthread
|
|---|
| 28 | # <find-static-library>rt
|
|---|
| 29 | # <include>/opt/mpich/include
|
|---|
| 30 | # <include>/opt/mpich/include/mpi2c++
|
|---|
| 31 | # <include>include
|
|---|
| 32 | # <include>mpid/mpd/
|
|---|
| 33 | # <library-path>/opt/mpich/ch-p4/lib64
|
|---|
| 34 | # <link>static
|
|---|
| 35 | # <linkflags>-O2
|
|---|
| 36 | # <linkflags>-Wall
|
|---|
| 37 | # <linkflags>-fmessage-length=0
|
|---|
| 38 | # <linkflags>-fno-strict-aliasing
|
|---|
| 39 | # <linkflags>-g
|
|---|
| 40 |
|
|---|
| 41 | : /opt/mpich/ch-p4/bin/mpirun ;
|
|---|
| 42 |
|
|---|
| 43 |
|
|---|