File tree Expand file tree Collapse file tree 2 files changed +0
-17
lines changed Expand file tree Collapse file tree 2 files changed +0
-17
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
- ln -s $(brew --prefix llvm@15)/bin/llvm-install-name-tool /usr/local/bin/llvm-install-name-tool
98
- ld64.lld --version
99
- llvm-install-name-tool --version
100
91
- name : Build spidermonkey
101
92
if : ${{ steps.cache-spidermonkey.outputs.cache-hit != 'true' }}
102
93
run : ./setup.sh
@@ -177,13 +168,6 @@ jobs:
177
168
echo "Installed Dependencies"
178
169
env :
179
170
PYTHON_VERSION : ${{ matrix.python_version }}
180
- - name : Setup LLVM
181
- if : ${{ matrix.os == 'macos-13' || matrix.os == 'macos-14' }}
182
- run : |
183
- brew install llvm@15
184
- ln -s $(brew --prefix llvm@15)/bin/lld /usr/local/bin/lld
185
- ln -s $(brew --prefix llvm@15)/bin/ld64.lld /usr/local/bin/ld64.lld
186
- ld64.lld --version
187
171
- name : Build Docs # only build docs once
188
172
if : ${{ matrix.os == 'ubuntu-20.04' && matrix.python_version == '3.11' }}
189
173
run : |
Original file line number Diff line number Diff line change @@ -91,7 +91,6 @@ if(CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME)
91
91
set (PYTHONLIBS_VERSION_STRING ${Python_VERSION} )
92
92
set (PYTHON_INCLUDE_DIR ${Python_INCLUDE_DIRS} )
93
93
set (PYTHON_LIBRARIES ${Python_LIBRARIES} )
94
- set (CMAKE_LINKER_TYPE "LLD" )
95
94
elseif (UNIX )
96
95
find_package (Python 3.8 COMPONENTS Interpreter Development REQUIRED)
97
96
set (Python_FIND_VIRTUALENV FIRST) # (require cmake >= v3.15 and this is the default) use the Python version configured by pyenv if available
You can’t perform that action at this time.
0 commit comments