| Index: native_client_sdk/src/build_tools/build_sdk.py
|
| diff --git a/native_client_sdk/src/build_tools/build_sdk.py b/native_client_sdk/src/build_tools/build_sdk.py
|
| index a75d9667829a47b864189b391bb157bbe9cf48cf..25aa0f5e2d1d359a105928030cc199989457ad5a 100755
|
| --- a/native_client_sdk/src/build_tools/build_sdk.py
|
| +++ b/native_client_sdk/src/build_tools/build_sdk.py
|
| @@ -622,11 +622,12 @@ def BuildStepMakeAll(pepperdir, platform, directory, step_name,
|
| if not deps:
|
| extra_args += ['IGNORE_DEPS=1']
|
|
|
| - buildbot_common.Run([make, '-j8', 'all_versions'] + extra_args,
|
| + buildbot_common.Run([make, '-j8', 'TOOLCHAIN=all'] + extra_args,
|
| cwd=make_dir)
|
| if clean:
|
| # Clean to remove temporary files but keep the built libraries.
|
| - buildbot_common.Run([make, '-j8', 'clean'] + extra_args, cwd=make_dir)
|
| + buildbot_common.Run([make, '-j8', 'clean', 'TOOLCHAIN=all'] + extra_args,
|
| + cwd=make_dir)
|
|
|
|
|
| def BuildStepBuildLibraries(pepperdir, platform, directory, clean=True):
|
|
|