Skip to content

Commit

Permalink
Bundle cores for ARM
Browse files Browse the repository at this point in the history
  • Loading branch information
kivutar committed Dec 28, 2018
1 parent a88c330 commit c4b945f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ ifeq ($(OS), OSX)
EXT=dylib
endif
ifeq ($(OS), Linux)
BUILDBOTURL=http://buildbot.libretro.com/nightly/linux/$(ARCH)/latest
ifeq ($(ARCH), arm)
BUILDBOTURL=http://buildbot.libretro.com/nightly/linux/armv7-neon-hf/latest
else
BUILDBOTURL=http://buildbot.libretro.com/nightly/linux/$(ARCH)/latest
endif
EXT=so
endif
ifeq ($(OS), Windows)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ Ludo is a work in progress libretro frontend written in go.

It is able to launch most non GL libretro cores.

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

## Dependencies

* GLFW 3.2
* OpenGL 4.1
* OpenGL >= 2.1
* OpenAL

#### On OSX
Expand Down

0 comments on commit c4b945f

Please sign in to comment.