diff options
author | Xianyi Zhang <xianyi@iscas.ac.cn> | 2011-03-25 01:16:12 +0800 |
---|---|---|
committer | Xianyi Zhang <xianyi@iscas.ac.cn> | 2011-04-07 14:48:10 +0800 |
commit | 552f31dbbd01374f60c8fb8169eeb4b613ac3e32 (patch) | |
tree | 1545048da4cda7c6e75cabb9248169837c0dcbd3 /Makefile.system | |
parent | 5452ba3850908c0c1c027e10fce540ff59ac52e2 (diff) | |
download | openblas-552f31dbbd01374f60c8fb8169eeb4b613ac3e32.tar.gz openblas-552f31dbbd01374f60c8fb8169eeb4b613ac3e32.tar.bz2 openblas-552f31dbbd01374f60c8fb8169eeb4b613ac3e32.zip |
Fixed #13. Fixed blasint undefined bug in <cblas.h> file.
Diffstat (limited to 'Makefile.system')
-rw-r--r-- | Makefile.system | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile.system b/Makefile.system index 5a129732f..6fb0ec86f 100644 --- a/Makefile.system +++ b/Makefile.system @@ -30,6 +30,10 @@ ifdef TARGET GETARCH_FLAGS += -DFORCE_$(TARGET) endif +ifdef INTERFACE64 +GETARCH_FLAGS += -DUSE64BITINT +endif + # This operation is expensive, so execution should be once. ifndef GOTOBLAS_MAKEFILE export GOTOBLAS_MAKEFILE = 1 @@ -489,7 +493,8 @@ endif ifdef BINARY64 ifdef INTERFACE64 -CCOMMON_OPT += -DUSE64BITINT +CCOMMON_OPT += +#-DUSE64BITINT endif endif |