Skip to content

Commit

Permalink
Test older Xcode with new script.
Browse files Browse the repository at this point in the history
  • Loading branch information
tmcgilchrist committed Nov 7, 2024
1 parent 02ca08e commit 20561e4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,10 @@ jobs:
# Allows starting up lldb from a remote terminal
sudo DevToolsSecurity --enable
spctl developer-mode enable-terminal
# Support oldest possible version
sudo xcode-select -s /Applications/Xcode_14.3.1.app/Contents/Developer
# Select latest supported version
sudo xcode-select -s /Applications/Xcode_15.2.app/Contents/Developer
# sudo xcode-select -s /Applications/Xcode_15.2.app/Contents/Developer
lldb --version
- name: MacOS 14 Dependencies
Expand Down
4 changes: 1 addition & 3 deletions testsuite/tests/unwind/check-linker-version.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
#!/bin/bash

LDFULL="`ld -v 2>&1`"
LD="`echo $LDFULL | grep -o \"PROJECT:ld-[0-9]*\"`"
LDVER="`echo $LD | sed \"s/PROJECT:ld[64]?-//\"`"
LDVER=$(ld -v 2>&1 | egrep -o "PROJECT:ld(64)?-[0-9]*" | sed -E "s/PROJECT:ld(64)?-//")

# Extract the first 3 parts of an LD version number
version () {
Expand Down

0 comments on commit 20561e4

Please sign in to comment.