File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -179,7 +179,7 @@ jobs:
179
179
180
180
# Ensure stuff works on macos too
181
181
- os : macos-latest
182
- llvm_version : " 16 .0"
182
+ llvm_version : " 17 .0"
183
183
release_build : 0
184
184
no_default_features : 0
185
185
feature_extra_asserts : 0
Original file line number Diff line number Diff line change @@ -24,9 +24,10 @@ function llvm_macos_target_triple() {
24
24
25
25
function llvm_version_triple() {
26
26
case " $1 " in
27
- 9.0) echo " 9.0.1" ;;
27
+ 9.0) echo " 9.0.1" ;;
28
+ 17.0) echo " 17.0.6" ;;
28
29
# By default, take the .0 patch release
29
- * ) echo " $1 .0" ;;
30
+ * ) echo " $1 .0" ;;
30
31
esac
31
32
}
32
33
@@ -66,6 +67,7 @@ set_llvm_env() {
66
67
llvm_download $base_url ` llvm_macos_target_triple ${LLVM_VERSION_TRIPLE} `
67
68
export DYLD_LIBRARY_PATH=" ${LLVM_DIRECTORY} /lib" :${DYLD_LIBRARY_PATH:- }
68
69
export CARGO_TARGET_AARCH64_APPLE_DARWIN_LINKER=" ${LLVM_DIRECTORY} /bin/clang"
70
+ export MACOSX_DEPLOYMENT_TARGET=" 10.6"
69
71
fi
70
72
export LD=" ${LLVM_DIRECTORY} /bin/clang"
71
73
export CC=" ${LLVM_DIRECTORY} /bin/clang"
You can’t perform that action at this time.
0 commit comments