Skip to content

Commit 10def91

Browse files
committed
Build: add parallel hypre and sundials build scripts to all remaining targets
1 parent f5016ab commit 10def91

File tree

19 files changed

+103
-38
lines changed

19 files changed

+103
-38
lines changed

Build/impi_intel_linux/make_fds.sh

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
#!/bin/bash
2-
ARG=$1
3-
4-
source ../Scripts/set_intel_compiler.sh $ARG
52

63
dir=`pwd`
74
target=${dir##*/}
85

6+
# Compile third-party libraries
7+
export FDS_BUILD_TARGET=$target
8+
export SOURCE_INTEL_IFORT=1
9+
source ../Scripts/build_thirdparty_libs.sh "$@"
10+
11+
# Build fds
912
echo Building $target with Intel MPI and $INTEL_IFORT
1013
make -j4 VPATH="../../Source" -f ../makefile $target

Build/impi_intel_linux_db/make_fds.sh

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,11 @@
33
dir=`pwd`
44
target=${dir##*/}
55

6-
# Compile third-party libraries.
6+
# Compile third-party libraries
77
export FDS_BUILD_TARGET=$target
88
export SOURCE_INTEL_IFORT=1
99
source ../Scripts/build_thirdparty_libs.sh "$@"
1010

11-
12-
# build fds
11+
# Build fds
1312
echo Building $target with Intel MPI and $INTEL_IFORT
14-
make VPATH="../../Source" -f ../makefile $target
13+
make -j4 VPATH="../../Source" -f ../makefile $target
Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
#!/bin/bash
2-
ARG=$1
3-
4-
source ../Scripts/set_intel_compiler.sh $ARG
52

63
dir=`pwd`
74
target=${dir##*/}
85

6+
# Compile third-party libraries
7+
export FDS_BUILD_TARGET=$target
8+
export SOURCE_INTEL_IFORT=1
9+
source ../Scripts/build_thirdparty_libs.sh "$@"
10+
11+
# Build fds
912
echo Building $target with Intel MPI and $INTEL_IFORT
1013
make -j4 VPATH="../../Source" -f ../makefile $target
Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
#!/bin/bash
2-
ARG=$1
3-
4-
source ../Scripts/set_intel_compiler.sh $ARG
52

63
dir=`pwd`
74
target=${dir##*/}
85

6+
# Compile third-party libraries
7+
export FDS_BUILD_TARGET=$target
8+
export SOURCE_INTEL_IFORT=1
9+
source ../Scripts/build_thirdparty_libs.sh "$@"
10+
11+
# Build fds
912
echo Building $target with Intel MPI and $INTEL_IFORT
1013
make -j4 VPATH="../../Source" -f ../makefile $target
Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
#!/bin/bash
2-
ARG=$1
3-
4-
source ../Scripts/set_intel_compiler.sh $ARG
52

63
dir=`pwd`
74
target=${dir##*/}
85

6+
# Compile third-party libraries
7+
export FDS_BUILD_TARGET=$target
8+
export SOURCE_INTEL_IFORT=1
9+
source ../Scripts/build_thirdparty_libs.sh "$@"
10+
11+
# Build fds
912
echo Building $target with Intel MPI and $INTEL_IFORT
1013
make -j4 VPATH="../../Source" -f ../makefile $target
14+
Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
#!/bin/bash
2-
ARG=$1
3-
4-
source ../Scripts/set_intel_compiler.sh $ARG
52

63
dir=`pwd`
74
target=${dir##*/}
85

6+
# Compile third-party libraries
7+
export FDS_BUILD_TARGET=$target
8+
export SOURCE_INTEL_IFORT=1
9+
source ../Scripts/build_thirdparty_libs.sh "$@"
10+
11+
# Build fds
912
echo Building $target with Intel MPI and $INTEL_IFORT
1013
make -j4 VPATH="../../Source" -f ../makefile $target
14+

Build/ompi_gnu_linux/make_fds.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
#!/bin/bash
2+
23
dir=`pwd`
34
target=${dir##*/}
45

6+
# Compile third-party libraries
7+
export FDS_BUILD_TARGET=$target
8+
source ../Scripts/build_thirdparty_libs.sh "$@"
9+
10+
# Builds fds
511
echo Building $target
612
make -j4 VPATH="../../Source" -f ../makefile $target
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
#!/bin/bash
2+
23
dir=`pwd`
34
target=${dir##*/}
45

5-
# Compile third-party libraries.
6+
# Compile third-party libraries
67
export FDS_BUILD_TARGET=$target
78
source ../Scripts/build_thirdparty_libs.sh "$@"
89

10+
# Builds fds
911
echo Building $target
1012
make -j4 VPATH="../../Source" -f ../makefile $target
Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
#!/bin/bash
2+
23
dir=`pwd`
34
target=${dir##*/}
45

6+
# Compile third-party libraries
7+
export FDS_BUILD_TARGET=$target
8+
source ../Scripts/build_thirdparty_libs.sh "$@"
9+
10+
# Builds fds
511
echo Building $target
6-
make -j4 VPATH="../../Source" -f ../makefile $target
12+
make -j4 VPATH="../../Source" -f ../makefile $target

Build/ompi_gnu_osx/make_fds.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
#!/bin/bash
2+
23
dir=`pwd`
34
target=${dir##*/}
45

6+
# Compile third-party libraries
7+
export FDS_BUILD_TARGET=$target
8+
source ../Scripts/build_thirdparty_libs.sh "$@"
9+
10+
# Build fds
511
echo Building $target
612
make -j4 VPATH="../../Source" -f ../makefile $target

0 commit comments

Comments
 (0)