Lakka/config/arch.i386
Stephan Raue 98853a9daa config/path: move ARCH specific options to ARCH specific config files
Signed-off-by: Stephan Raue <stephan@openelec.tv>
2011-03-21 21:39:29 +01:00

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"