summaryrefslogtreecommitdiff
path: root/tools/configure
diff options
context:
space:
mode:
authorMagnus Holmgren <magnushol@gmail.com>2006-09-04 18:34:29 +0000
committerMagnus Holmgren <magnushol@gmail.com>2006-09-04 18:34:29 +0000
commit4ae9655f718ce975ac9f2c8e8f38547d65993554 (patch)
tree665f372a7955e06b6f11508eed704173aac52730 /tools/configure
parent973ee5d8d9ecb16bfbe69b9869f7dd57159765c2 (diff)
downloadrockbox-4ae9655f718ce975ac9f2c8e8f38547d65993554.tar.gz
rockbox-4ae9655f718ce975ac9f2c8e8f38547d65993554.zip
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-xtools/configure2
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 () {
207 207
208coldfirecc () { 208coldfirecc () {
209 prefixtools m68k-elf- 209 prefixtools m68k-elf-
210 GCCOPTS="$CCOPTS -g -m5200 -Wa\,-m5249 -malign-int -mstrict-align" 210 GCCOPTS="$CCOPTS -g -m5206e -Wa\,-m5249 -malign-int -mstrict-align"
211 GCCOPTIMIZE="-fomit-frame-pointer" 211 GCCOPTIMIZE="-fomit-frame-pointer"
212 endian="big" 212 endian="big"
213} 213}