Files
Arch-R/config/arch.x86_64
Stephan Raue dbe9095551 config/arch.x86_64: cleanup
Signed-off-by: Stephan Raue <stephan@openelec.tv>
2011-03-23 03:07:37 +01:00

12 lines
291 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="-fPIC -march=$TARGET_CPU -m64"
TARGET_LDFLAGS="-fPIC -march=$TARGET_CPU -m64"