File tree 2 files changed +1
-7
lines changed
2 files changed +1
-7
lines changed Original file line number Diff line number Diff line change 88
88
if : ${{ matrix.os == 'macos-13' && steps.cache-spidermonkey.outputs.cache-hit != 'true' }}
89
89
# SpiderMonkey requires XCode SDK version at least 13.3
90
90
run : sudo xcode-select -switch /Applications/Xcode_14.3.app
91
- - name : Setup LLVM
92
- if : ${{ (matrix.os == 'macos-13' || matrix.os == 'macos-14') && steps.cache-spidermonkey.outputs.cache-hit != 'true' }}
93
- run : |
94
- brew install llvm@15
95
- ln -s $(brew --prefix llvm@15)/bin/lld /usr/local/bin/lld
96
- ln -s $(brew --prefix llvm@15)/bin/ld64.lld /usr/local/bin/ld64.lld
97
- ld64.lld --version
98
91
- name : Build spidermonkey
99
92
if : ${{ steps.cache-spidermonkey.outputs.cache-hit != 'true' }}
100
93
run : ./setup.sh
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ if [[ "$OSTYPE" == "linux-gnu"* ]]; then # Linux
18
18
elif [[ " $OSTYPE " == " darwin" * ]]; then # macOS
19
19
brew update || true # allow failure
20
20
brew install cmake pkg-config wget unzip coreutils # `coreutils` installs the `realpath` command
21
+ brew install lld
21
22
elif [[ " $OSTYPE " == " msys" * ]]; then # Windows
22
23
echo " Dependencies are not going to be installed automatically on Windows."
23
24
else
You can’t perform that action at this time.
0 commit comments