Skip to content

Commit 732ebf7

Browse files
authored
Merge pull request #859 from microsoft/py3_12
Fix install dependencies on mac prebuilds
2 parents 7bde56f + 80b457a commit 732ebf7

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

pipelines/build.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,11 @@ steps:
2222
echo "##vso[task.setvariable variable=CC]gcc-10"
2323
echo "##vso[task.setvariable variable=CXX]g++-10"
2424
echo "Sysroot path set to: $SYSROOT_PATH"
25+
elif [ "$(uname)" = "Darwin" ]; then
26+
echo "##vso[task.setvariable variable=CC]clang"
27+
echo "##vso[task.setvariable variable=CXX]clang++"
2528
fi
26-
displayName: 'Install sysroot (Linux only)'
29+
displayName: 'Configure compiler'
2730

2831
- script: npm ci
2932
displayName: 'Install dependencies'

0 commit comments

Comments
 (0)