| Index: scripts/slave/compile.py
|
| diff --git a/scripts/slave/compile.py b/scripts/slave/compile.py
|
| index 8ad7685dee42da8bb18ba6fb47fd14e0a8b3e678..aef07d0a7f657e6261643c1195d0fd485ef72433 100755
|
| --- a/scripts/slave/compile.py
|
| +++ b/scripts/slave/compile.py
|
| @@ -116,9 +116,6 @@ def goma_setup(options, env):
|
| env['GOMA_ENABLE_REMOTE_LINK'] = options.goma_enable_remote_link
|
| if options.goma_store_local_run_output:
|
| env['GOMA_STORE_LOCAL_RUN_OUTPUT'] = options.goma_store_local_run_output
|
| - if options.goma_enable_compiler_info_cache:
|
| - # Will be stored in GOMA_CACHE_DIR.
|
| - env['GOMA_COMPILER_INFO_CACHE_FILE'] = 'goma-compiler-info.cache'
|
|
|
| if options.build_data_dir:
|
| env['GOMA_DUMP_STATS_FILE'] = os.path.join(options.build_data_dir,
|
| @@ -480,9 +477,6 @@ def get_parsed_options():
|
| help='Set goma hermetic mode')
|
| option_parser.add_option('--goma-enable-remote-link', default=None,
|
| help='Enable goma remote link.')
|
| - option_parser.add_option('--goma-enable-compiler-info-cache',
|
| - action='store_true',
|
| - help='Enable goma CompilerInfo cache')
|
| option_parser.add_option('--goma-store-local-run-output', default=None,
|
| help='Store local run output to goma servers.')
|
| option_parser.add_option('--goma-fail-fast', action='store_true')
|
|
|