Skip to content

Commit

Permalink
guix: use clang-toolchain-18 for macOS build
Browse files Browse the repository at this point in the history
Version is 18.1.4.
  • Loading branch information
fanquake committed May 16, 2024
1 parent 835d8ae commit 0b01a0f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion contrib/devtools/symbol-check.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ def check_MACHO_sdk(binary) -> bool:
return False

def check_MACHO_ld64(binary) -> bool:
if binary.build_version.tools[0].version == [17, 0, 6]:
if binary.build_version.tools[0].version == [18, 1, 4]:
return True
return False

Expand Down
6 changes: 3 additions & 3 deletions contrib/guix/manifest.scm
Original file line number Diff line number Diff line change
Expand Up @@ -532,9 +532,9 @@ inspecting signatures in Mach-O binaries.")
((string-contains target "darwin")
(list ;; Native GCC 11 toolchain
gcc-toolchain-11
clang-toolchain-17
lld-17
(make-lld-wrapper lld-17 #:lld-as-ld? #t)
clang-toolchain-18
lld-18
(make-lld-wrapper lld-18 #:lld-as-ld? #t)
python-signapple
zip))
(else '())))))

0 comments on commit 0b01a0f

Please sign in to comment.