Updated Compilation guide (Android from Linux) (markdown)

l3iggs 2014-07-25 11:05:08 -07:00
parent a2764efb40
commit dedeff9f10
1 changed files with 2 additions and 2 deletions

@ -13,11 +13,11 @@ These instructions have been tested under Linux. They _may_ also work in windows
git clone https://github.com/libretro/libretro-super.git git clone https://github.com/libretro/libretro-super.git
cd libretro-super cd libretro-super
./libretro-fetch.sh ./libretro-fetch.sh
./libretro-build-android-mk.sh NOCLEAN=1 ./libretro-build-android-mk.sh #omit NOCLEAN=1 if you'd like to perform make clean on every core before
``` ```
`./libretro-fetch.sh` can fail on fork() calls, repeat until all are up to date `./libretro-fetch.sh` can fail on fork() calls, repeat until all are up to date
For `./libretro-build-android-mk.sh`, some cores may fail to compile (g++ "Argument list too long" error). See https://github.com/libretro/libretro-super/issues/10 For `./libretro-build-android-mk.sh`, some cores may fail to compile (g++ "Argument list too long" error). See https://github.com/libretro/libretro-super/issues/10
You can avoid cleaning before building the cores if you wish (greatly speeds things up if you're building often) by using `NOCLEAN=1 ./libretro-build-android-mk.sh`
## Building RetroArch ## Building RetroArch
The RetroArch repo is fetched into the `libretro-super` folder as `retroarch` by `./libretro-fetch.sh` above. The RetroArch repo is fetched into the `libretro-super` folder as `retroarch` by `./libretro-fetch.sh` above.
```bash ```bash