diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2012-01-18 07:43:05 +0100 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2012-01-22 18:46:45 +0100 |
| commit | 91a3978fdc380e37b44098e6f9adb7ae780d300c (patch) | |
| tree | 493aeb978db24c1ccfd3e04d171b579112069da4 | |
| parent | 9e7b41745255e225c1909258ccdfeb986be2e49e (diff) | |
| download | rockbox-91a3978fdc380e37b44098e6f9adb7ae780d300c.zip rockbox-91a3978fdc380e37b44098e6f9adb7ae780d300c.tar.gz rockbox-91a3978fdc380e37b44098e6f9adb7ae780d300c.tar.bz2 rockbox-91a3978fdc380e37b44098e6f9adb7ae780d300c.tar.xz | |
ypr0: Enable asm optimizations.
Change-Id: Ib9f98563a9687827a384e5c7587638f5874cf485
| -rw-r--r-- | firmware/export/config.h | 2 | ||||
| -rwxr-xr-x | tools/configure | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/firmware/export/config.h b/firmware/export/config.h index 9af8b1f..61f8d61 100644 --- a/firmware/export/config.h +++ b/firmware/export/config.h @@ -563,7 +563,7 @@ Lyre prototype 1 */ #define CPU_ARM #define ARM_ARCH 7 /* ARMv7 */ -#elif (CONFIG_CPU == IMX31L) \ +#elif (CONFIG_CPU == IMX31L) || defined(SAMSUNG_YPR0) \ || ((CONFIG_PLATFORM & PLATFORM_MAEMO4) && defined(MAEMO_ARM_BUILD)) #define CPU_ARM #define ARM_ARCH 6 /* ARMv6 */ diff --git a/tools/configure b/tools/configure index 0a4766d..ac2c66a 100755 --- a/tools/configure +++ b/tools/configure @@ -672,7 +672,6 @@ ypr0cc () { endian="little" thread_support="HAVE_SIGALTSTACK_THREADS" app_type="ypr0" - arch="unknown" # Include path GCCOPTS="$GCCOPTS -D_GNU_SOURCE=1 -U_FORTIFY_SOURCE -D_REENTRANT" |