This repository was archived by the owner on Aug 30, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 49
49
# Platform variables used in multibuild scripts
50
50
if [ `uname` == 'Darwin' ]; then
51
51
echo "##vso[task.setvariable variable=TRAVIS_OS_NAME]osx"
52
- echo "##vso[task.setvariable variable=MACOSX_DEPLOYMENT_TARGET]10.9 "
52
+ echo "##vso[task.setvariable variable=MACOSX_DEPLOYMENT_TARGET]10.14 "
53
53
else
54
54
echo "##vso[task.setvariable variable=TRAVIS_OS_NAME]linux"
55
55
fi
Original file line number Diff line number Diff line change 23
23
- task : BatchScript@1
24
24
inputs :
25
25
filename : azure/set_vs_toolchain.cmd
26
- arguments : $(BITS) 2019 14.16
26
+ arguments : $(BITS) 2019 " 14.16"
27
27
modifyEnvironment : True
28
28
displayName : Set VS toolchain version
29
29
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
# Environment variables for build
3
- MACOSX_DEPLOYMENT_TARGET=10.9
3
+ MACOSX_DEPLOYMENT_TARGET=10.14
4
4
CFLAGS=" -std=c99 -fno-strict-aliasing"
5
5
# Macos's linker doesn't support stripping symbols
6
6
if [ " $( uname) " != " Darwin" ]; then
Original file line number Diff line number Diff line change 3
3
# The important difference from the 64-bit build is `-msse2` to
4
4
# compile sse loops for ufuncs.
5
5
set -x
6
- MACOSX_DEPLOYMENT_TARGET=10.9
6
+ MACOSX_DEPLOYMENT_TARGET=10.14
7
7
8
8
# Fails test_umath.TestAVXUfuncs with reciprocal on Azure
9
9
# CFLAGS="-msse2 -std=c99 -fno-strict-aliasing"
You can’t perform that action at this time.
0 commit comments