summaryrefslogtreecommitdiffstats
path: root/libraries/atlas
diff options
context:
space:
mode:
author Serban Udrea2012-09-14 02:25:23 +0200
committer Robby Workman2012-09-14 04:39:48 +0200
commit883a4f77db220bea5ebfc22987ec543db5e8c077 (patch)
treeb0e93a40c10e0bd24e0d20a148f637eb95accef6 /libraries/atlas
parenta02f4d7ebe2341cd353c6109d82c21db1ff81bab (diff)
downloadslackbuilds-883a4f77db220bea5ebfc22987ec543db5e8c077.tar.gz
libraries/atlas: Build enhancements
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'libraries/atlas')
-rw-r--r--libraries/atlas/atlas.SlackBuild7
1 files changed, 5 insertions, 2 deletions
diff --git a/libraries/atlas/atlas.SlackBuild b/libraries/atlas/atlas.SlackBuild
index 2e597e3728..83adc39b10 100644
--- a/libraries/atlas/atlas.SlackBuild
+++ b/libraries/atlas/atlas.SlackBuild
@@ -25,7 +25,7 @@
PRGNAM=atlas
VERSION=${VERSION:-3.8.3}
-BUILD=${BUILD:-1}
+BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
@@ -146,11 +146,14 @@ cd $BLDdir
# a reasonable assumption with Slackware. Under other circumstances
# "-DPentiumCPS=$CPU_FREQ" has to be exchanged with "-DWALL".
#
-../configure -Si archdef "$USE_ARCH_DEFAULTS" -b "$BITSize" -D c \
+../configure -Si cputhrchk 0 -Si archdef "$USE_ARCH_DEFAULTS" -b "$BITSize" -D c \
-DPentiumCPS="$CPU_FREQ" -Fa alg -fPIC
# NOTES ON THE FLAGS FOR CONFIGURE
#
+# -Si cputhrchk 0 means that configure actually does not care about CPU
+# throttling. This is to avoid false positives. Thus the full responsibility
+# stays now with the user of the script.
# -Si archdef "$USE_ARCH_DEFAULTS" means that we ignore or not architectural defaults depending
# upon the value of "$USE_ARCH_DEFAULTS".
# -b "$BITSize" tells ATLAS about the platform's bitsize, 32 or 64.