Skip to content

Commit 9946618

Browse files
committed
guix: use clang-toolchain-18 for macOS build
Version is 18.1.6.
1 parent cad1272 commit 9946618

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

contrib/devtools/symbol-check.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ def check_MACHO_sdk(binary) -> bool:
240240
return False
241241

242242
def check_MACHO_ld64(binary) -> bool:
243-
if binary.build_version.tools[0].version == [17, 0, 6]:
243+
if binary.build_version.tools[0].version == [18, 1, 6]:
244244
return True
245245
return False
246246

contrib/guix/manifest.scm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -532,9 +532,9 @@ inspecting signatures in Mach-O binaries.")
532532
((string-contains target "darwin")
533533
(list ;; Native GCC 11 toolchain
534534
gcc-toolchain-11
535-
clang-toolchain-17
536-
lld-17
537-
(make-lld-wrapper lld-17 #:lld-as-ld? #t)
535+
clang-toolchain-18
536+
lld-18
537+
(make-lld-wrapper lld-18 #:lld-as-ld? #t)
538538
python-signapple
539539
zip))
540540
(else '())))))

0 commit comments

Comments
 (0)