Skip to content

Commit 55fdcdc

Browse files
committed
wip9
1 parent 057e5a9 commit 55fdcdc

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/actions/install/action.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff 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-

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ kernel = $(shell uname -ms)
1111
ifeq ($(kernel), Darwin arm64)
1212
OS := macos
1313
ARCH := aarch64
14+
ifeq ($(kernel), Darwin x86_64)
15+
OS := macos
16+
ARCH := x86_64
1417
else ifeq ($(kernel), Linux aarch64)
1518
OS := linux
1619
ARCH := aarch64

0 commit comments

Comments
 (0)