summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python/99-ignore-optimization-flag.patch
diff options
context:
space:
mode:
authorRobert Yang <liezhi.yang@windriver.com>2013-05-08 16:29:48 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-05-10 11:43:12 +0100
commit2f7c588c5a8148eec37405186c34bdd1425ea30b (patch)
treeef4e7ba977d961740172ea04d977ae43c6d5f42f /meta/recipes-devtools/python/python/99-ignore-optimization-flag.patch
parenta86b00651f825c51e381b2e009269d014486cd55 (diff)
downloadpoky-2f7c588c5a8148eec37405186c34bdd1425ea30b.tar.gz
python: remove the default optimization
We had hard coded python-native and python's default optimization to 1, which made the "assert" statement didn't work, and removed the "-O/-OO" (optimization options), the target python had a "-N" option to disable the default optimization, but the native python didn't. I think that we can set the environment variable PYTHONOPTIMIZE or use "python -O" if we need to optimize, but I'm not sure whether we need to set it by default, it would confuse the user or cause/hide unexpected problems if the "assert" doesn't work. [YOCTO #4427] (From OE-Core rev: 165ed464bbb9bf985dde9d8c15d000809901fff6) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python/99-ignore-optimization-flag.patch')
-rw-r--r--meta/recipes-devtools/python/python/99-ignore-optimization-flag.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/meta/recipes-devtools/python/python/99-ignore-optimization-flag.patch b/meta/recipes-devtools/python/python/99-ignore-optimization-flag.patch
deleted file mode 100644
index a5d9812caf..0000000000
--- a/meta/recipes-devtools/python/python/99-ignore-optimization-flag.patch
+++ /dev/null
@@ -1,21 +0,0 @@
1Upstream-Status: Inappropriate [embedded specific]
2
3# Reinstate the empty -O option to fix weird mixing of native and target
4# binaries and libraries with LD_LIBRARY_PATH when host==target
5#
6# Signed-off-by: Denys Dmytriyenko <denis@denix.org>
7
8Index: Python-2.6.6/Modules/main.c
9===================================================================
10--- Python-2.6.6.orig/Modules/main.c
11+++ Python-2.6.6/Modules/main.c
12@@ -327,6 +327,9 @@ Py_Main(int argc, char **argv)
13
14 /* case 'J': reserved for Jython */
15
16+ case 'O': /* ignore it */
17+ break;
18+
19 case 'N':
20 Py_OptimizeFlag=0;
21 break;