Skip to content

Commit 78fdbe5

Browse files
authored
Merge pull request #13657 from rmcdermo/master
Build: remove script to set INTEL_IFORT by argument, simplifies build…
2 parents e7347f8 + c142514 commit 78fdbe5

File tree

8 files changed

+6
-34
lines changed

8 files changed

+6
-34
lines changed

Build/Scripts/build_thirdparty_libs.sh

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,3 @@ source ../Scripts/HYPRE/build_hypre.sh confmake.sh $clean_hypre
5555
## build sundials
5656
source ../Scripts/SUNDIALS/build_sundials.sh confmake.sh $clean_sundials
5757

58-
59-
# Use ARG and the options
60-
#echo "ARG is: $ARG"
61-
if [ "$SOURCE_INTEL_IFORT" -eq 1 ]; then
62-
source ../Scripts/set_intel_compiler.sh $ARG
63-
fi

Build/Scripts/set_intel_compiler.sh

Lines changed: 0 additions & 16 deletions
This file was deleted.

Build/impi_intel_linux/make_fds.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@ target=${dir##*/}
55

66
# Compile third-party libraries
77
export FDS_BUILD_TARGET=$target
8-
export SOURCE_INTEL_IFORT=1
98
source ../Scripts/build_thirdparty_libs.sh "$@"
109

1110
# Build fds
12-
echo Building $target with Intel MPI and $INTEL_IFORT
11+
echo Building $target
1312
make -j4 VPATH="../../Source" -f ../makefile $target

Build/impi_intel_linux_db/make_fds.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@ target=${dir##*/}
55

66
# Compile third-party libraries
77
export FDS_BUILD_TARGET=$target
8-
export SOURCE_INTEL_IFORT=1
98
source ../Scripts/build_thirdparty_libs.sh "$@"
109

1110
# Build fds
12-
echo Building $target with Intel MPI and $INTEL_IFORT
11+
echo Building $target
1312
make -j4 VPATH="../../Source" -f ../makefile $target

Build/impi_intel_linux_dv/make_fds.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@ target=${dir##*/}
55

66
# Compile third-party libraries
77
export FDS_BUILD_TARGET=$target
8-
export SOURCE_INTEL_IFORT=1
98
source ../Scripts/build_thirdparty_libs.sh "$@"
109

1110
# Build fds
12-
echo Building $target with Intel MPI and $INTEL_IFORT
11+
echo Building $target
1312
make -j4 VPATH="../../Source" -f ../makefile $target

Build/impi_intel_linux_openmp/make_fds.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@ target=${dir##*/}
55

66
# Compile third-party libraries
77
export FDS_BUILD_TARGET=$target
8-
export SOURCE_INTEL_IFORT=1
98
source ../Scripts/build_thirdparty_libs.sh "$@"
109

1110
# Build fds
12-
echo Building $target with Intel MPI and $INTEL_IFORT
11+
echo Building $target
1312
make -j4 VPATH="../../Source" -f ../makefile $target

Build/impi_intel_linux_openmp_db/make_fds.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,9 @@ target=${dir##*/}
55

66
# Compile third-party libraries
77
export FDS_BUILD_TARGET=$target
8-
export SOURCE_INTEL_IFORT=1
98
source ../Scripts/build_thirdparty_libs.sh "$@"
109

1110
# Build fds
12-
echo Building $target with Intel MPI and $INTEL_IFORT
11+
echo Building $target
1312
make -j4 VPATH="../../Source" -f ../makefile $target
1413

Build/impi_intel_linux_openmp_dv/make_fds.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,9 @@ target=${dir##*/}
55

66
# Compile third-party libraries
77
export FDS_BUILD_TARGET=$target
8-
export SOURCE_INTEL_IFORT=1
98
source ../Scripts/build_thirdparty_libs.sh "$@"
109

1110
# Build fds
12-
echo Building $target with Intel MPI and $INTEL_IFORT
11+
echo Building $target
1312
make -j4 VPATH="../../Source" -f ../makefile $target
1413

0 commit comments

Comments
 (0)