diff options
Diffstat (limited to 'bitbake/lib/bb/cooker.py')
-rw-r--r-- | bitbake/lib/bb/cooker.py | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index dc196ae801..5bdf90ffa7 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py | |||
@@ -904,19 +904,6 @@ class BBCooker: | |||
904 | if self.state != state.parsing: | 904 | if self.state != state.parsing: |
905 | self.parseConfiguration () | 905 | self.parseConfiguration () |
906 | 906 | ||
907 | # Import Psyco if available and not disabled | ||
908 | import platform | ||
909 | if platform.machine() in ['i386', 'i486', 'i586', 'i686']: | ||
910 | if not self.configuration.disable_psyco: | ||
911 | try: | ||
912 | import psyco | ||
913 | except ImportError: | ||
914 | collectlog.info("Psyco JIT Compiler (http://psyco.sf.net) not available. Install it to increase performance.") | ||
915 | else: | ||
916 | psyco.bind( CookerParser.parse_next ) | ||
917 | else: | ||
918 | collectlog.info("You have disabled Psyco. This decreases performance.") | ||
919 | |||
920 | self.status = bb.cache.CacheData(self.caches_array) | 907 | self.status = bb.cache.CacheData(self.caches_array) |
921 | 908 | ||
922 | ignore = bb.data.getVar("ASSUME_PROVIDED", self.configuration.data, 1) or "" | 909 | ignore = bb.data.getVar("ASSUME_PROVIDED", self.configuration.data, 1) or "" |