Chromium Code Reviews| Index: build/toolchain/gcc_solink_wrapper.py |
| diff --git a/build/toolchain/gcc_solink_wrapper.py b/build/toolchain/gcc_solink_wrapper.py |
| index 45c489d25bd8e12a886c36235b2f2e639835cd6b..65d4617ce18c3bb9b272ec870b6b434dab0d4c42 100755 |
| --- a/build/toolchain/gcc_solink_wrapper.py |
| +++ b/build/toolchain/gcc_solink_wrapper.py |
| @@ -100,6 +100,9 @@ def main(): |
| help='Linking command') |
| args = parser.parse_args() |
| + # Work-around for gold being slow-by-default. http://crbug.com/632230 |
| + os.environ['LC_ALL'] = 'C' |
|
pasko
2016/07/28 10:03:56
bring it back to the original after linking?
I am
agrieve
2016/07/28 14:14:39
Done.
|
| + |
| # First, run the actual link. |
| result = subprocess.call(CommandToRun(args.command)) |
| if result != 0: |