diff options
author | Magnus Holmgren <magnushol@gmail.com> | 2006-09-04 18:34:29 +0000 |
---|---|---|
committer | Magnus Holmgren <magnushol@gmail.com> | 2006-09-04 18:34:29 +0000 |
commit | 4ae9655f718ce975ac9f2c8e8f38547d65993554 (patch) | |
tree | 665f372a7955e06b6f11508eed704173aac52730 /tools/configure | |
parent | 973ee5d8d9ecb16bfbe69b9869f7dd57159765c2 (diff) |
Use a better target cpu for gcc when building for coldfire targets. Makes the code slightly smaller and slightly faster. Tested with gcc 3.4.6 and 4.0.3. You'll need to re-run configure for this to be applied.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10880 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools/configure')
-rwxr-xr-x | tools/configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/configure b/tools/configure index 38b1100943..0f51e486a2 100755 --- a/tools/configure +++ b/tools/configure @@ -207,7 +207,7 @@ calmrisccc () { coldfirecc () { prefixtools m68k-elf- - GCCOPTS="$CCOPTS -g -m5200 -Wa\,-m5249 -malign-int -mstrict-align" + GCCOPTS="$CCOPTS -g -m5206e -Wa\,-m5249 -malign-int -mstrict-align" GCCOPTIMIZE="-fomit-frame-pointer" endian="big" } |