|
From: <ba...@us...> - 2006-09-17 23:51:31
|
Revision: 360
http://svn.sourceforge.net/cadcdev/?rev=360&view=rev
Author: bardtx
Date: 2006-09-17 16:51:26 -0700 (Sun, 17 Sep 2006)
Log Message:
-----------
Patch #1553384 from SourceForge:
In GNU as the -marm7 option is deprecated (and for some
reason even causes a segfault in binutils 2.17).
-mcpu=arm7 should be used instead (this works in
binutils 2.12 and up, which should cover anybody using
KOS 1.3.x).
Modified Paths:
--------------
kos/environ_dreamcast.sh
Modified: kos/environ_dreamcast.sh
===================================================================
--- kos/environ_dreamcast.sh 2006-09-17 23:48:43 UTC (rev 359)
+++ kos/environ_dreamcast.sh 2006-09-17 23:51:26 UTC (rev 360)
@@ -13,5 +13,5 @@
export DC_ARM_OBJCOPY="${DC_ARM_BASE}/bin/${DC_ARM_PREFIX}-objcopy"
export DC_ARM_LD="${DC_ARM_BASE}/bin/${DC_ARM_PREFIX}-ld"
export DC_ARM_CFLAGS="-mcpu=arm7 -Wall -O2"
- export DC_ARM_AFLAGS="-marm7"
+ export DC_ARM_AFLAGS="-mcpu=arm7"
fi
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|