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 @@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta"
8
8
9
9
[project ]
10
10
name = " scipy-openblas64"
11
- version = " 0.3.27.44.4 "
11
+ version = " 0.3.27.44.5 "
12
12
requires-python = " >=3.7"
13
13
description = " Provides OpenBLAS for python packaging"
14
14
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"
@@ -100,8 +102,9 @@ patch -p1 < ../patches-windows/revert-win-threading.patch
100
102
# Build OpenBLAS
101
103
make BINARY=$build_bits DYNAMIC_ARCH=1 USE_THREAD=1 USE_OPENMP=0 \
102
104
NUM_THREADS=24 NO_WARMUP=1 NO_AFFINITY=1 CONSISTENT_FPCSR=1 \
103
- BUILD_LAPACK_DEPRECATED=1 TARGET=PRESCOTT BUFFERSIZE=20\
105
+ BUILD_LAPACK_DEPRECATED=1 TARGET=PRESCOTT BUFFERSIZE=20 \
104
106
LDFLAGS=" $LDFLAGS " \
107
+ DYNAMIC_LIST=" $dynamic_list " \
105
108
COMMON_OPT=" $cflags " \
106
109
FCOMMON_OPT=" $fflags " \
107
110
MAX_STACK_ALLOC=2048 \
Original file line number Diff line number Diff line change @@ -120,6 +120,7 @@ function do_build_lib {
120
120
Linux-x86_64)
121
121
local bitness=64
122
122
local target_flags=" TARGET=PRESCOTT"
123
+ local dynamic_list=" PRESCOTT NEHALEM SANDYBRIDGE HASWELL SKYLAKEX"
123
124
;;
124
125
Darwin-x86_64)
125
126
local bitness=64
@@ -130,6 +131,7 @@ function do_build_lib {
130
131
* -i686)
131
132
local bitness=32
132
133
local target_flags=" TARGET=PRESCOTT"
134
+ local dynamic_list=" PRESCOTT NEHALEM SANDYBRIDGE HASWELL"
133
135
;;
134
136
Linux-aarch64)
135
137
local bitness=64
You can’t perform that action at this time.
0 commit comments