diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2013-05-08 16:29:48 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-10 11:43:12 +0100 |
commit | 2f7c588c5a8148eec37405186c34bdd1425ea30b (patch) | |
tree | ef4e7ba977d961740172ea04d977ae43c6d5f42f /meta/recipes-devtools/python/python-native_2.7.3.bb | |
parent | a86b00651f825c51e381b2e009269d014486cd55 (diff) | |
download | poky-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-native_2.7.3.bb')
-rw-r--r-- | meta/recipes-devtools/python/python-native_2.7.3.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/python/python-native_2.7.3.bb b/meta/recipes-devtools/python/python-native_2.7.3.bb index 162ecedb73..722d92c096 100644 --- a/meta/recipes-devtools/python/python-native_2.7.3.bb +++ b/meta/recipes-devtools/python/python-native_2.7.3.bb | |||
@@ -4,7 +4,7 @@ EXTRANATIVEPATH += "bzip2-native" | |||
4 | DEPENDS = "openssl-native bzip2-replacement-native zlib-native readline-native sqlite3-native" | 4 | DEPENDS = "openssl-native bzip2-replacement-native zlib-native readline-native sqlite3-native" |
5 | PR = "${INC_PR}.1" | 5 | PR = "${INC_PR}.1" |
6 | 6 | ||
7 | SRC_URI += "file://04-default-is-optimized.patch \ | 7 | SRC_URI += "\ |
8 | file://05-enable-ctypes-cross-build.patch \ | 8 | file://05-enable-ctypes-cross-build.patch \ |
9 | file://06-ctypes-libffi-fix-configure.patch \ | 9 | file://06-ctypes-libffi-fix-configure.patch \ |
10 | file://10-distutils-fix-swig-parameter.patch \ | 10 | file://10-distutils-fix-swig-parameter.patch \ |