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

Update Mac version from 10.9 to 10.14. #149

Merged
merged 1 commit into from
Jan 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion azure/posix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
# Platform variables used in multibuild scripts
if [ `uname` == 'Darwin' ]; then
echo "##vso[task.setvariable variable=TRAVIS_OS_NAME]osx"
echo "##vso[task.setvariable variable=MACOSX_DEPLOYMENT_TARGET]10.9"
echo "##vso[task.setvariable variable=MACOSX_DEPLOYMENT_TARGET]10.14"
else
echo "##vso[task.setvariable variable=TRAVIS_OS_NAME]linux"
fi
Expand Down
2 changes: 1 addition & 1 deletion env_vars.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# Environment variables for build
MACOSX_DEPLOYMENT_TARGET=10.9
MACOSX_DEPLOYMENT_TARGET=10.14
CFLAGS="-std=c99 -fno-strict-aliasing"
# Macos's linker doesn't support stripping symbols
if [ "$(uname)" != "Darwin" ]; then
Expand Down
2 changes: 1 addition & 1 deletion env_vars_32.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# The important difference from the 64-bit build is `-msse2` to
# compile sse loops for ufuncs.
set -x
MACOSX_DEPLOYMENT_TARGET=10.9
MACOSX_DEPLOYMENT_TARGET=10.14

# Fails test_umath.TestAVXUfuncs with reciprocal on Azure
# CFLAGS="-msse2 -std=c99 -fno-strict-aliasing"
Expand Down