mirror of
https://github.com/SFML/SFML.git
synced 2024-11-24 20:31:05 +08:00
4180e6b31f
For some reason, one might want to recompile the extlibs but this is a tedious task. That's why these scripts are provided. Please read readme.txt before using them!
13 lines
291 B
Bash
Executable File
13 lines
291 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
DESTDIR=$PWD/tmp/arm
|
|
|
|
PATH=$PWD/toolchains/arm/bin:$PATH
|
|
CC=arm-linux-androideabi-gcc
|
|
CXX=arm-linux-androideabi-g++
|
|
CFLAGS=-I$DESTDIR/usr/include
|
|
CPPFLAGS=-I$DESTDIR/usr/include
|
|
LDFLAGS=-L$DESTDIR/usr/lib
|
|
|
|
./compile_libs.sh arm $PATH $CC $CXX $CFLAGS $CPPFLAGS $LDFLAGS
|