diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-06-09 10:33:56 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-06-09 15:48:23 +0100 |
commit | e55dc39c3702538ab3d81ff55c37ab7e8c1e78a2 (patch) | |
tree | f96f5b108795c3a223525370656b313c3ff3a776 /bitbake/bin | |
parent | c7f76a1bc9868ea4709688967d9794acd4d784ec (diff) | |
download | poky-e55dc39c3702538ab3d81ff55c37ab7e8c1e78a2.tar.gz |
Drop psyco support
At best it gave 1-2% improvement now, its 32 bit x86 only and isn't
supported after python 2.6.
PyPy is probably a better option now.
(Bitbake rev: 3c3bd0c2fa80d747f25401c17b785c7c2f3787ca)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/bin')
-rwxr-xr-x | bitbake/bin/bitbake | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake index c348e5e628..d6e8e0940e 100755 --- a/bitbake/bin/bitbake +++ b/bitbake/bin/bitbake | |||
@@ -139,9 +139,6 @@ Default BBFILES are the .bb files in the current directory.""") | |||
139 | parser.add_option("-p", "--parse-only", help = "quit after parsing the BB files (developers only)", | 139 | parser.add_option("-p", "--parse-only", help = "quit after parsing the BB files (developers only)", |
140 | action = "store_true", dest = "parse_only", default = False) | 140 | action = "store_true", dest = "parse_only", default = False) |
141 | 141 | ||
142 | parser.add_option("-d", "--disable-psyco", help = "disable using the psyco just-in-time compiler (not recommended)", | ||
143 | action = "store_true", dest = "disable_psyco", default = False) | ||
144 | |||
145 | parser.add_option("-s", "--show-versions", help = "show current and preferred versions of all packages", | 142 | parser.add_option("-s", "--show-versions", help = "show current and preferred versions of all packages", |
146 | action = "store_true", dest = "show_versions", default = False) | 143 | action = "store_true", dest = "show_versions", default = False) |
147 | 144 | ||