-
-
Notifications
You must be signed in to change notification settings - Fork 481
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Trac #14605: Better system detection for ATLAS
See lots of rants in #10508. This fixes a bunch of problems with ATLAS detection system. Adds support for (some) ARM hard float systems. Adds archdefs for Raspberry Pi and Cygwin64. Use tarball at: * http://boxen.math.washington.edu/home/jpflori/upstream/atlas-3.10.1.20 140210.tar.bz2 URL: http://trac.sagemath.org/14605 Reported by: jpflori Ticket author(s): Jean-Pierre Flori Reviewer(s): Volker Braun
- Loading branch information
Showing
10 changed files
with
349 additions
and
52 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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
tarball=atlas-VERSION.tar.bz2 | ||
sha1=d7a74adc654eaca6e05d0a90299fd271a5103c52 | ||
md5=43a9a4324648ee3506d7982393b50f00 | ||
cksum=3795128001 | ||
sha1=ecacb1132efac76c7a018ec7212508d4a7e7ebcc | ||
md5=5d69a191785de59f693b604599570650 | ||
cksum=2926672652 |
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
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
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 |
---|---|---|
@@ -1 +1 @@ | ||
3.10.1.20140128 | ||
3.10.1.20140210 |
This file was deleted.
Oops, something went wrong.
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,21 @@ | ||
diff -druN ATLAS.detect/CONFIG/src/atlcomp.txt ATLAS/CONFIG/src/atlcomp.txt | ||
--- ATLAS.detect/CONFIG/src/atlcomp.txt 2013-01-08 10:15:42.000000000 -0800 | ||
+++ ATLAS/CONFIG/src/atlcomp.txt 2014-02-10 04:36:26.113011794 -0800 | ||
@@ -255,13 +255,13 @@ | ||
# ARM defaults | ||
# | ||
MACH=ARMv7 OS=ALL LVL=1000 COMPS=xcc | ||
- 'gcc' '-mcpu=cortex-a8 -O1 -mfpu=vfpv3 -mfloat-abi=softfp ' | ||
+ 'gcc' '-mcpu=cortex-a8 -O1 -mfpu=vfpv3 -mfloat-abi=hard ' | ||
MACH=ARMv7 OS=ALL LVL=1000 COMPS=smc,skc,gcc,icc | ||
- 'gcc' '-O1 -mcpu=cortex-a8 -mtune=cortex-a8 -mfpu=vfpv3 -mfloat-abi=softfp -fno-expensive-optimizations' | ||
+ 'gcc' '-O1 -mcpu=cortex-a8 -mtune=cortex-a8 -mfpu=vfpv3 -mfloat-abi=hard -fno-expensive-optimizations' | ||
MACH=ARMv7 OS=ALL LVL=1000 COMPS=dmc,dkc | ||
- 'gcc' '-O1 -mcpu=cortex-a8 -mtune=cortex-a8 -mfpu=vfpv3 -mfloat-abi=softfp -fno-schedule-insns2' | ||
+ 'gcc' '-O1 -mcpu=cortex-a8 -mtune=cortex-a8 -mfpu=vfpv3 -mfloat-abi=hard -fno-schedule-insns2' | ||
MACH=ARMv7 OS=ALL LVL=1000 COMPS=f77 | ||
- 'gfortran' '-mcpu=cortex-a8 -mfpu=vfpv3 -mfloat-abi=softfp -O' | ||
+ 'gfortran' '-mcpu=cortex-a8 -mfpu=vfpv3 -mfloat-abi=hard -O' | ||
# | ||
# Generic defaults | ||
# |
Oops, something went wrong.