File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -206,10 +206,14 @@ jobs:
206206 # zig uses macos instead of ios as target. But install created ios dir.
207207 # here we link v8 build in macos path too.
208208 - run : |
209- mkdir -p v8/out/macos/debug/obj/zig/
210- ln -s v8/out/${{ env.OS }}/debug/obj/zig/libc_v8.a v8/out/macos/debug/obj/zig/libc_v8.a
211- mkdir -p v8/out/macos/release/obj/zig/
212- ln -s v8/out/${{ env.OS }}/release/obj/zig/libc_v8.a v8/out/macos/release/obj/zig/libc_v8.a
209+ # v8
210+ ln -s v8/out/${{ env.OS }} v8/out/macos
211+ # libiconv
212+ ln -s vendor/libiconv/out/${{env.OS}}-${{env.ARCH}} vendor/libiconv/out/macos-${{env.ARCH}}
213+ # netsurf
214+ ln -s vendor/netsurf/out/${{env.OS}}-${{env.ARCH}} vendor/netsurf/out/macos-${{env.ARCH}}
215+ # mimalloc
216+ ln -s vendor/mimalloc/out/${{env.OS}}-${{env.ARCH}} vendor/mimalloc/out/macos-${{env.ARCH}}
213217
214218 - name : zig build
215219 run : zig build --release=safe -Doptimize=ReleaseSafe -Dgit_commit=$(git rev-parse --short ${{ github.sha }}) static-lib
You can’t perform that action at this time.
0 commit comments