summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-devtools/luajit/luajit-2.0.0/disable_lj_vm_foldarith_for_spe.patch
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2013-05-10 18:07:17 +0000
committerMartin Jansa <Martin.Jansa@gmail.com>2013-05-16 11:04:34 +0200
commit6edc36d790dd905cb74fa46d061e63a8c590bdb3 (patch)
tree0a450c4c01f7ed3a8f3e0868550d932b849a0776 /meta-oe/recipes-devtools/luajit/luajit-2.0.0/disable_lj_vm_foldarith_for_spe.patch
parenta289eb906ee9d6c8c5a5abe87fe7095880449db3 (diff)
downloadmeta-openembedded-6edc36d790dd905cb74fa46d061e63a8c590bdb3.tar.gz
LuaJIT: Upgrade 2.0.0 -> 2.0.1
Fix stripping related warnings Drop foldarith_for_spe patch not neded anymore QA Error about elocations in .text are still there like 2.0.0 Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-devtools/luajit/luajit-2.0.0/disable_lj_vm_foldarith_for_spe.patch')
-rw-r--r--meta-oe/recipes-devtools/luajit/luajit-2.0.0/disable_lj_vm_foldarith_for_spe.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/meta-oe/recipes-devtools/luajit/luajit-2.0.0/disable_lj_vm_foldarith_for_spe.patch b/meta-oe/recipes-devtools/luajit/luajit-2.0.0/disable_lj_vm_foldarith_for_spe.patch
deleted file mode 100644
index c96fc77c7..000000000
--- a/meta-oe/recipes-devtools/luajit/luajit-2.0.0/disable_lj_vm_foldarith_for_spe.patch
+++ /dev/null
@@ -1,13 +0,0 @@
1Index: LuaJIT-2.0.0/src/lj_vmmath.c
2===================================================================
3--- LuaJIT-2.0.0.orig/src/lj_vmmath.c 2012-11-08 02:10:00.000000000 -0800
4+++ LuaJIT-2.0.0/src/lj_vmmath.c 2012-11-19 22:15:28.613527136 -0800
5@@ -22,7 +22,7 @@
6 LJ_FUNCA double lj_vm_tanh(double x) { return tanh(x); }
7 #endif
8
9-#if !LJ_TARGET_X86ORX64
10+#if !(LJ_TARGET_X86ORX64 || LJ_TARGET_PPCSPE)
11 double lj_vm_foldarith(double x, double y, int op)
12 {
13 switch (op) {