summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rwxr-xr-xtools/configure4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/configure b/tools/configure
index e636608848..e091ea0cc9 100755
--- a/tools/configure
+++ b/tools/configure
@@ -26,6 +26,7 @@ shcc () {
26 AS=sh-elf-as 26 AS=sh-elf-as
27 OC=sh-elf-objcopy 27 OC=sh-elf-objcopy
28 GCCOPTS="$CCOPTS -m1" 28 GCCOPTS="$CCOPTS -m1"
29 GCCOPTIMIZE="-fomit-frame-pointer -fschedule-insns"
29} 30}
30 31
31coldfirecc () { 32coldfirecc () {
@@ -35,6 +36,7 @@ coldfirecc () {
35 AS=m68k-elf-as 36 AS=m68k-elf-as
36 OC=m68k-elf-objcopy 37 OC=m68k-elf-objcopy
37 GCCOPTS="$CCOPTS -m5200" 38 GCCOPTS="$CCOPTS -m5200"
39 GCCOPTIMIZE="-fomit-frame-pointer"
38} 40}
39 41
40whichsim () { 42whichsim () {
@@ -385,7 +387,7 @@ if [ -z "$debug" ]; then
385 *) 387 *)
386 debug="" 388 debug=""
387 echo "Normal build selected" 389 echo "Normal build selected"
388 GCCOPTS="$GCCOPTS -fomit-frame-pointer -fschedule-insns" 390 GCCOPTS="$GCCOPTS $GCCOPTIMIZE"
389 ;; 391 ;;
390 392
391 esac 393 esac