Skip to content

Commit c4b945f

Browse files
committed
Bundle cores for ARM
1 parent a88c330 commit c4b945f

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@ ifeq ($(OS), OSX)
88
EXT=dylib
99
endif
1010
ifeq ($(OS), Linux)
11-
BUILDBOTURL=http://buildbot.libretro.com/nightly/linux/$(ARCH)/latest
11+
ifeq ($(ARCH), arm)
12+
BUILDBOTURL=http://buildbot.libretro.com/nightly/linux/armv7-neon-hf/latest
13+
else
14+
BUILDBOTURL=http://buildbot.libretro.com/nightly/linux/$(ARCH)/latest
15+
endif
1216
EXT=so
1317
endif
1418
ifeq ($(OS), Windows)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ Ludo is a work in progress libretro frontend written in go.
66

77
It is able to launch most non GL libretro cores.
88

9-
It works on OSX, Linux and Windows. You can download releases [here](https://github.com/libretro/ludo/releases)
9+
It works on OSX, Linux, Linux ARM and Windows. You can download releases [here](https://github.com/libretro/ludo/releases)
1010

1111
## Dependencies
1212

1313
* GLFW 3.2
14-
* OpenGL 4.1
14+
* OpenGL >= 2.1
1515
* OpenAL
1616

1717
#### On OSX

0 commit comments

Comments
 (0)