aboutsummaryrefslogtreecommitdiff
path: root/configure.sh
diff options
context:
space:
mode:
authorhinder <hinder@105869f7-3296-0410-a4ea-f4349344b45a>2011-10-22 15:35:21 +0000
committerhinder <hinder@105869f7-3296-0410-a4ea-f4349344b45a>2011-10-22 15:35:21 +0000
commit6a2a5111bb911b5d95dfcd5f811e5ec8d70a45eb (patch)
tree0bb4cbb5a2b7e266fbae26079cc3cd29760740db /configure.sh
parent5c699b29dea888eea479e53b7a75ccea03a7e327 (diff)
Change default of VECTORISE_INLINE to "no"
Most of the machines supported by SimFactory that use the Intel compiler have to set this to "no" to avoid the compiler running out of memory when compiling ML_BSSN. We choose "no" as the default now to avoid problems for users of machines not supported in SimFactory. git-svn-id: https://svn.cct.lsu.edu/repos/numrel/LSUThorns/Vectors/trunk@33 105869f7-3296-0410-a4ea-f4349344b45a
Diffstat (limited to 'configure.sh')
-rw-r--r--configure.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.sh b/configure.sh
index 83ae33a..dffbb92 100644
--- a/configure.sh
+++ b/configure.sh
@@ -79,7 +79,7 @@ esac
case $(echo "x$VECTORISE_INLINE" | tr '[:upper:]' '[:lower:]') in
(xyes) VECTORISE_INLINE=1 ;;
(xno) VECTORISE_INLINE=0 ;;
- (x) VECTORISE_INLINE=1 ;; # default
+ (x) VECTORISE_INLINE=0 ;; # default
(*) echo "BEGIN ERROR"
echo "Illegal value of option VECTORISE_INLINE"
echo "END ERROR"