diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-06-01 13:21:30 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-06-01 13:21:30 +0200 |
commit | 13168ba15b63ccdd4b34e0a20bcb4deb37ab29f3 (patch) | |
tree | 899ada7b0b1f70e65a0a9b9a7f345d5c0758311b /toolkit/mozapps/installer/packager.py | |
parent | 6d9ebfac9ae1e2079e8ffa5c0fb303ed51fccb32 (diff) | |
download | UXP-13168ba15b63ccdd4b34e0a20bcb4deb37ab29f3.tar UXP-13168ba15b63ccdd4b34e0a20bcb4deb37ab29f3.tar.gz UXP-13168ba15b63ccdd4b34e0a20bcb4deb37ab29f3.tar.lz UXP-13168ba15b63ccdd4b34e0a20bcb4deb37ab29f3.tar.xz UXP-13168ba15b63ccdd4b34e0a20bcb4deb37ab29f3.zip |
Add build config option to disable startup cache precompilation.
This resolves #418.
Diffstat (limited to 'toolkit/mozapps/installer/packager.py')
-rw-r--r-- | toolkit/mozapps/installer/packager.py | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/toolkit/mozapps/installer/packager.py b/toolkit/mozapps/installer/packager.py index f2dc3fac6..40f31646a 100644 --- a/toolkit/mozapps/installer/packager.py +++ b/toolkit/mozapps/installer/packager.py @@ -156,15 +156,16 @@ def precompile_cache(registry, source_path, gre_path, app_path): extra_env['TSAN_OPTIONS'] = 'report_bugs=0' if buildconfig.substs.get('MOZ_ASAN'): extra_env['ASAN_OPTIONS'] = 'detect_leaks=0' - if launcher.launch(['xpcshell', '-g', gre_path, '-a', app_path, - '-f', os.path.join(os.path.dirname(__file__), - 'precompile_cache.js'), - '-e', 'precompile_startupcache("resource://%s/");' - % resource], - extra_linker_path=gre_path, - extra_env=extra_env): - errors.fatal('Error while running startup cache precompilation') - return + if buildconfig.substs.get('MOZ_DISABLE_PRECOMPILED_STARTUPCACHE') != '1': + if launcher.launch(['xpcshell', '-g', gre_path, '-a', app_path, + '-f', os.path.join(os.path.dirname(__file__), + 'precompile_cache.js'), + '-e', 'precompile_startupcache("resource://%s/");' + % resource], + extra_linker_path=gre_path, + extra_env=extra_env): + errors.fatal('Error while running startup cache precompilation') + return from mozpack.mozjar import JarReader jar = JarReader(cache) resource = '/resource/%s/' % resource |