mirror of
https://github.com/libretro/Lakka.git
synced 2024-12-12 18:17:56 +00:00
98853a9daa
Signed-off-by: Stephan Raue <stephan@openelec.tv>
12 lines
276 B
Plaintext
12 lines
276 B
Plaintext
# determines TARGET_CPU, if not forced by user
|
|
if [ -z "$TARGET_CPU" ]; then
|
|
TARGET_CPU=i686
|
|
fi
|
|
|
|
# determine architecture's family
|
|
TARGET_SUBARCH=i686
|
|
|
|
# setup ARCH specific *FLAGS
|
|
TARGET_CFLAGS="-march=$TARGET_CPU -m32"
|
|
TARGET_LDFLAGS="-march=$TARGET_CPU -m32"
|