-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c5543af
commit 19a11c0
Showing
1 changed file
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
Index: ThirdParty/Allwmake | ||
=================================================================== | ||
--- ThirdParty/Allwmake (revision 2156) | ||
+++ ThirdParty/Allwmake (working copy) | ||
@@ -33,6 +33,8 @@ | ||
compileFlag=1; | ||
fi | ||
|
||
+compileFlag=0 | ||
+ | ||
## COMPILE LAPACK | ||
if [ "$compileFlag" == "1" ] | ||
then | ||
@@ -196,7 +198,7 @@ | ||
echo "Compiling fenton4Foam" | ||
echo | ||
cd $fentonName | ||
- gfortran -o $WAVES_APPBIN/$fentonName $fentonName.f fft.f | ||
+ ftn -o $WAVES_APPBIN/$fentonName $fentonName.f fft.f | ||
cd $OLDPWD | ||
else | ||
echo | ||
Index: ThirdParty/settings/oceanWave3DSettings/common.mk | ||
=================================================================== | ||
--- ThirdParty/settings/oceanWave3DSettings/common.mk (revision 2156) | ||
+++ ThirdParty/settings/oceanWave3DSettings/common.mk (working copy) | ||
@@ -16,9 +16,10 @@ | ||
BUILDDIR = $(PWD)/../build | ||
|
||
|
||
-FC = gfortran | ||
+FC = ftn | ||
LIBDIRS = -L$(PWD)/../lib | ||
-LINLIB = -ltmglib_gfortran -llapack_gfortran -lskit_gfortran -lblas | ||
+#LINLIB = -ltmglib_gfortran -llapack_gfortran -lskit_gfortran -lblas | ||
+LINLIB = -lskit_gfortran | ||
DBFLAGS = -pg -g -O0 -fPIC -fbounds-check -ffpe-trap=invalid,zero,overflow -ffree-line-length-none | ||
OPTFLAGS = -O3 -fPIC -ffpe-trap=invalid,zero,overflow -ffree-line-length-none -fstack-protector-all | ||
SHLIBFLAGS = -shared -O2 -fPIC -fbounds-check -ffpe-trap=invalid,zero,overflow -ffree-line-length-none -fstack-protector-all | ||
Index: ThirdParty/settings/sparseSettings/makefile | ||
=================================================================== | ||
--- ThirdParty/settings/sparseSettings/makefile (revision 2156) | ||
+++ ThirdParty/settings/sparseSettings/makefile (working copy) | ||
@@ -20,7 +20,7 @@ | ||
# Last Updated: May 9, 1994. | ||
|
||
SHELL = /bin/sh | ||
-F77 = gfortran | ||
+F77 = ftn | ||
# F77 = f77 | ||
# AR = ar rcv | ||
AR = ar -rcv |