Skip to content

Commit

Permalink
Merge pull request #13657 from rmcdermo/master
Browse files Browse the repository at this point in the history
Build: remove script to set INTEL_IFORT by argument, simplifies build…
  • Loading branch information
rmcdermo authored Oct 30, 2024
2 parents e7347f8 + c142514 commit 78fdbe5
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 34 deletions.
6 changes: 0 additions & 6 deletions Build/Scripts/build_thirdparty_libs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,3 @@ source ../Scripts/HYPRE/build_hypre.sh confmake.sh $clean_hypre
## build sundials
source ../Scripts/SUNDIALS/build_sundials.sh confmake.sh $clean_sundials


# Use ARG and the options
#echo "ARG is: $ARG"
if [ "$SOURCE_INTEL_IFORT" -eq 1 ]; then
source ../Scripts/set_intel_compiler.sh $ARG
fi
16 changes: 0 additions & 16 deletions Build/Scripts/set_intel_compiler.sh

This file was deleted.

3 changes: 1 addition & 2 deletions Build/impi_intel_linux/make_fds.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@ target=${dir##*/}

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

# Build fds
echo Building $target with Intel MPI and $INTEL_IFORT
echo Building $target
make -j4 VPATH="../../Source" -f ../makefile $target
3 changes: 1 addition & 2 deletions Build/impi_intel_linux_db/make_fds.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@ target=${dir##*/}

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

# Build fds
echo Building $target with Intel MPI and $INTEL_IFORT
echo Building $target
make -j4 VPATH="../../Source" -f ../makefile $target
3 changes: 1 addition & 2 deletions Build/impi_intel_linux_dv/make_fds.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@ target=${dir##*/}

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

# Build fds
echo Building $target with Intel MPI and $INTEL_IFORT
echo Building $target
make -j4 VPATH="../../Source" -f ../makefile $target
3 changes: 1 addition & 2 deletions Build/impi_intel_linux_openmp/make_fds.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@ target=${dir##*/}

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

# Build fds
echo Building $target with Intel MPI and $INTEL_IFORT
echo Building $target
make -j4 VPATH="../../Source" -f ../makefile $target
3 changes: 1 addition & 2 deletions Build/impi_intel_linux_openmp_db/make_fds.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,9 @@ target=${dir##*/}

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

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

3 changes: 1 addition & 2 deletions Build/impi_intel_linux_openmp_dv/make_fds.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,9 @@ target=${dir##*/}

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

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

0 comments on commit 78fdbe5

Please sign in to comment.