diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-01-01 22:16:45 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-01-01 22:16:45 +0000 |
commit | 06d634eab66c7ebce0fe02d87b2c0b48ac4fa72b (patch) | |
tree | b2b74e4d34b78b42775b329bfa0c07403638570e /extra/Configs/Config.sh | |
parent | 4643b181bdf1d9121f9d6d4214e991e7b9f52d30 (diff) |
Support arch specific optimizations (examples shown for x86 and ARM).
Autodetect target architecture by asking the compiler.
-Erik
Diffstat (limited to 'extra/Configs/Config.sh')
-rw-r--r-- | extra/Configs/Config.sh | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/extra/Configs/Config.sh b/extra/Configs/Config.sh index 5b5645727..4e337e6f1 100644 --- a/extra/Configs/Config.sh +++ b/extra/Configs/Config.sh @@ -25,16 +25,9 @@ # other sundry sources. Files within this library are copyright by their # respective copyright holders. -# What arch do you want to compile for... -#TARGET_ARCH=arm -#TARGET_ARCH=i386 -#TARGET_ARCH=m68k -#TARGET_ARCH=powerpc -TARGET_ARCH=sh -#TARGET_ARCH=sparc - # If you are running a cross compiler, you may want to set this -# to something more interesting... +# to something more interesting... Target architecture is determined +# by asking this compiler what arch it compiles stuff for. NATIVE_CC = gcc CROSS = /usr/cygnus/yapp-001013/H-i686-pc-linux-gnulibc2.1/bin/sh-linux-gnu- CC = $(CROSS)gcc |