Lakka/config/arch.x86_64
Stephan Raue 14ab6a420f config/arch.*: dont set -fPIC globally
Signed-off-by: Stephan Raue <stephan@openelec.tv>
2011-12-04 16:09:17 +01:00

12 lines
279 B
Plaintext

# determines TARGET_CPU, if not forced by user
if [ -z "$TARGET_CPU" ]; then
TARGET_CPU=core2
fi
# determine architecture's family
TARGET_SUBARCH=x86_64
# setup ARCH specific *FLAGS
TARGET_CFLAGS="-march=$TARGET_CPU -m64"
TARGET_LDFLAGS="-march=$TARGET_CPU -m64"