summaryrefslogtreecommitdiff
path: root/meta/recipes-core/uclibc/uclibc-0.9.32/compile-arm-fork-with-O2.patch
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2012-02-02 00:17:30 -0800
committerSaul Wold <sgw@linux.intel.com>2012-02-07 15:06:04 -0800
commit5d2c0b051072b3cee510dcad8d20fb26d3843f62 (patch)
tree5b4831bd683787db073d210719ae931f7c588519 /meta/recipes-core/uclibc/uclibc-0.9.32/compile-arm-fork-with-O2.patch
parentc8a9ae7c047051958b8667e77288c5ac295766c6 (diff)
downloadopenembedded-core-5d2c0b051072b3cee510dcad8d20fb26d3843f62.tar.gz
openembedded-core-5d2c0b051072b3cee510dcad8d20fb26d3843f62.tar.bz2
openembedded-core-5d2c0b051072b3cee510dcad8d20fb26d3843f62.tar.xz
openembedded-core-5d2c0b051072b3cee510dcad8d20fb26d3843f62.zip
uclibc: Upgrade recipes from 0.9.32 -> 0.9.33
Prefer 0.9.33 by default Delete recipes for 0.9.32 Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta/recipes-core/uclibc/uclibc-0.9.32/compile-arm-fork-with-O2.patch')
-rw-r--r--meta/recipes-core/uclibc/uclibc-0.9.32/compile-arm-fork-with-O2.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/meta/recipes-core/uclibc/uclibc-0.9.32/compile-arm-fork-with-O2.patch b/meta/recipes-core/uclibc/uclibc-0.9.32/compile-arm-fork-with-O2.patch
deleted file mode 100644
index 429f27dfc..000000000
--- a/meta/recipes-core/uclibc/uclibc-0.9.32/compile-arm-fork-with-O2.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-When compiling in thumb mode for arm with -Os gcc gives up since it can not find registers
-to spill. So we use -O2 option for compiling fork.c It may be addressable is gcc.
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-
-Upstream-Status: Pending
-
-diff --git a/libpthread/nptl/sysdeps/unix/sysv/linux/arm/Makefile.arch b/libpthread/nptl/sysdeps/unix/sysv/linux/arm/Makefile.arch
-index 329d8a9..41e3646 100644
---- a/libpthread/nptl/sysdeps/unix/sysv/linux/arm/Makefile.arch
-+++ b/libpthread/nptl/sysdeps/unix/sysv/linux/arm/Makefile.arch
-@@ -30,3 +30,9 @@ CFLAGS-OMIT-libc-lowlevellock.c = -DNOT_IN_libc -DIS_IN_libpthread
- # This macro should be alternatively implemented in THUMB
- # assembly.
- ASFLAGS-vfork.S = -marm
-+
-+# For arm fork.c does not compile with -Os when in compiling
-+# in thumb1 mode
-+ifeq ($(COMPILE_IN_THUMB_MODE),y)
-+CFLAGS-fork.c = -O2
-+endif