File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta"
9
9
[project ]
10
10
name = " scipy-openblas64"
11
11
# v0.3.28
12
- version = " 0.3.28.0.0 "
12
+ version = " 0.3.28.0.1 "
13
13
requires-python = " >=3.7"
14
14
description = " Provides OpenBLAS for python packaging"
15
15
readme = " README.md"
Original file line number Diff line number Diff line change @@ -64,12 +64,14 @@ if [ "$build_bits" == 64 ]; then
64
64
extra=" -fno-asynchronous-unwind-tables"
65
65
vc_arch=" X64"
66
66
plat_tag=" win_amd64"
67
+ dynamic_list=" PRESCOTT NEHALEM SANDYBRIDGE HASWELL SKYLAKEX"
67
68
else
68
69
march=pentium4
69
70
extra=" -mfpmath=sse -msse2"
70
71
fextra=" -m32"
71
72
vc_arch=" i386"
72
73
plat_tag=" win32"
74
+ dynamic_list=" PRESCOTT NEHALEM SANDYBRIDGE HASWELL"
73
75
fi
74
76
cflags=" -O2 -march=$march -mtune=generic $extra "
75
77
fflags=" $fextra $cflags -frecursive -ffpe-summary=invalid,zero"
@@ -99,8 +101,9 @@ patch -p1 < ../patches-windows/openblas-make-libs.patch
99
101
CFLAGS=" $CFLAGS -fvisibility=protected -fno-ident" \
100
102
make BINARY=$build_bits DYNAMIC_ARCH=1 USE_THREAD=1 USE_OPENMP=0 \
101
103
NUM_THREADS=24 NO_WARMUP=1 NO_AFFINITY=1 CONSISTENT_FPCSR=1 \
102
- BUILD_LAPACK_DEPRECATED=1 TARGET=PRESCOTT BUFFERSIZE=20\
104
+ BUILD_LAPACK_DEPRECATED=1 TARGET=PRESCOTT BUFFERSIZE=20 \
103
105
LDFLAGS=" $LDFLAGS " \
106
+ DYNAMIC_LIST=" $dynamic_list " \
104
107
COMMON_OPT=" $cflags " \
105
108
FCOMMON_OPT=" $fflags " \
106
109
MAX_STACK_ALLOC=2048 \
Original file line number Diff line number Diff line change @@ -125,6 +125,7 @@ function do_build_lib {
125
125
Linux-x86_64)
126
126
local bitness=64
127
127
local target_flags=" TARGET=PRESCOTT"
128
+ local dynamic_list=" PRESCOTT NEHALEM SANDYBRIDGE HASWELL SKYLAKEX"
128
129
;;
129
130
Darwin-x86_64)
130
131
local bitness=64
@@ -135,6 +136,7 @@ function do_build_lib {
135
136
* -i686)
136
137
local bitness=32
137
138
local target_flags=" TARGET=PRESCOTT"
139
+ local dynamic_list=" PRESCOTT NEHALEM SANDYBRIDGE HASWELL"
138
140
;;
139
141
Linux-aarch64)
140
142
local bitness=64
You can’t perform that action at this time.
0 commit comments