Lakka/config/arch.i386
Stephan Raue 9c8e7bc6b0 config/arch.*: add variable to specify SIMD support
Signed-off-by: Stephan Raue <stephan@openelec.tv>
2012-07-28 03:11:02 +02:00

15 lines
337 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"
# build with SIMD support ( yes / no )
SIMD_SUPPORT="yes"