Skip to content

Commit 098e9a9

Browse files
kivutarJean-André Santoni
and
Jean-André Santoni
authored
Add support for M1 (#481)
* Add support for M1 * Fix staticcheck * Use setup-go@v3x * Some cores are now available Co-authored-by: Jean-André Santoni <[email protected]>
1 parent 374c9d4 commit 098e9a9

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

.github/workflows/ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- uses: actions/checkout@v2
1818
with:
1919
submodules: true
20-
- uses: actions/setup-go@v2
20+
- uses: actions/setup-go@v3
2121
- run: echo "/home/runner/go/bin" >> $GITHUB_PATH
2222
- run: go get golang.org/x/lint/golint
2323
- run: go get honnef.co/go/tools/cmd/staticcheck
@@ -36,7 +36,7 @@ jobs:
3636
- uses: actions/checkout@v2
3737
with:
3838
submodules: true
39-
- uses: actions/setup-go@v2
39+
- uses: actions/setup-go@v3
4040
- run: sudo apt-get install binutils-multiarch
4141
- run: sudo dpkg --add-architecture armhf
4242
- run: echo "" | sudo tee /etc/apt/sources.list
@@ -58,7 +58,7 @@ jobs:
5858
- uses: actions/checkout@v2
5959
with:
6060
submodules: true
61-
- uses: actions/setup-go@v2
61+
- uses: actions/setup-go@v3
6262
- run: echo "/Users/runner/go/bin" >> $GITHUB_PATH
6363
- run: go get golang.org/x/lint/golint
6464
- run: go get honnef.co/go/tools/cmd/staticcheck
@@ -76,7 +76,7 @@ jobs:
7676
- uses: actions/checkout@v2
7777
with:
7878
submodules: true
79-
- uses: actions/setup-go@v2
79+
- uses: actions/setup-go@v3
8080
- run: echo "/c/Users/runneradmin/go/bin" >> $GITHUB_PATH
8181
- run: go get golang.org/x/lint/golint
8282
- run: go get honnef.co/go/tools/cmd/staticcheck

Makefile

+7
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,13 @@ ifeq ($(ARCH), arm)
1212
CORES := $(filter-out melonds,$(CORES))
1313
endif
1414

15+
ifeq ($(ARCH), arm64)
16+
CORES := $(filter-out swanstation,$(CORES))
17+
CORES := $(filter-out mednafen_wswan,$(CORES))
18+
CORES := $(filter-out handy,$(CORES))
19+
CORES := $(filter-out np2kai,$(CORES))
20+
endif
21+
1522
ifeq ($(OS), Windows)
1623
CORES += mupen64plus_next
1724
endif

0 commit comments

Comments
 (0)