Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.

Commit cbf4af4

Browse files
committed
remove -msse2 from linux32 builds, use explicit build tag
1 parent ce9d03a commit cbf4af4

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

azure/posix.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
vmImage: ${{ parameters.vmImage }}
1010
variables:
1111
REPO_DIR: "numpy"
12-
BUILD_COMMIT: 'f1be9e50ff' # needed for 32 bit builds, should become 1.18.4
12+
BUILD_COMMIT: 'maintenance/1.18.x'
1313
PLAT: "x86_64"
1414
CYTHON_BUILD_DEP: "cython==0.29.16"
1515
NIGHTLY_BUILD_COMMIT: "master"

azure/windows.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
pool:
99
vmImage: ${{ parameters.vmImage }}
1010
variables:
11-
BUILD_COMMIT: "v1.18.3"
11+
BUILD_COMMIT: 'maintenance/1.18.x'
1212
NIGHTLY_BUILD_COMMIT: "master"
1313
JUNITXML: "test-data.xml"
1414
TEST_DIR: '$(Agent.WorkFolder)/tmp_for_test'

env_vars_32.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,6 @@
44
set -x
55
OPENBLAS_VERSION="v0.3.7"
66
MACOSX_DEPLOYMENT_TARGET=10.9
7-
CFLAGS="-msse2 -std=c99 -fno-strict-aliasing"
7+
# Causes failure for pre-1.19 in np.reciprocal
8+
# CFLAGS="-msse2 -std=c99 -fno-strict-aliasing"
9+
CFLAGS="-std=c99 -fno-strict-aliasing"

0 commit comments

Comments
 (0)