File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -65,15 +65,14 @@ runs:
6565 mkdir -p vendor/zig-js-runtime/vendor/v8/${{inputs.arch}}-${{inputs.os}}/release
6666 ln -s ${{ inputs.cache-dir }}/v8/libc_v8.a vendor/zig-js-runtime/vendor/v8/${{inputs.arch}}-${{inputs.os}}/release/libc_v8.a
6767
68+ - name : libiconv
69+ shell : bash
70+ run : make install-libiconv
71+
6872 - name : build mimalloc
6973 shell : bash
7074 run : make install-mimalloc
7175
7276 - name : build netsurf
7377 shell : bash
7478 run : make install-netsurf
75-
76- - name : libiconv
77- shell : bash
78- run : make install-libiconv
79-
Original file line number Diff line number Diff line change @@ -11,6 +11,9 @@ kernel = $(shell uname -ms)
1111ifeq ($(kernel ) , Darwin arm64)
1212 OS := macos
1313 ARCH := aarch64
14+ ifeq ($(kernel ) , Darwin x86_64)
15+ OS := macos
16+ ARCH := x86_64
1417else ifeq ($(kernel), Linux aarch64)
1518 OS := linux
1619 ARCH := aarch64
You can’t perform that action at this time.
0 commit comments