File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -128,13 +128,11 @@ jobs:
128128 - name : download sysroot
129129 run : |
130130 wget https://wasm.storage.googleapis.com/sysroot_debian_stretch_amd64_v2.tar.xz
131- tar xaf sysroot_debian_stretch_amd64_v2.tar.xz
132- pwd
133- ls
131+ mkdir sysroot && tar xaf sysroot_debian_stretch_amd64_v2.tar.xz -C sysroot
134132
135133 - name : cmake
136134 run : |
137- cmake . -G Ninja -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang -DCMAKE_AR=llvm-ar -DCMAKE_SYSROOT=$(pwd)/sysroot_debian_stretch_amd64_v2 -DCMAKE_BUILD_TYPE=Release -DBUILD_STATIC_LIB=ON -DCMAKE_INSTALL_PREFIX=install -DBYN_ENABLE_LTO=ON
135+ cmake . -G Ninja -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang -DCMAKE_AR=llvm-ar -DCMAKE_SYSROOT=$(pwd)/sysroot -DCMAKE_BUILD_TYPE=Release -DBUILD_STATIC_LIB=ON -DCMAKE_INSTALL_PREFIX=install -DBYN_ENABLE_LTO=ON
138136
139137 - name : build
140138 run : |
You can’t perform that action at this time.
0 commit comments