summaryrefslogtreecommitdiffstats
path: root/libraries/atlas/atlas.SlackBuild
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/atlas/atlas.SlackBuild')
-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.