Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Specify compilers only for cross-compilation #732

Merged
merged 1 commit into from Oct 12, 2017
Merged
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

@@ -112,8 +112,8 @@ def without(self, to_unset):
# Use arm32 because it is the fastest cross builder.
build_arm32 = build_arm.without(['SERVO_CACHE_DIR']) + Environment({
'BUILD_TARGET': 'arm-unknown-linux-gnueabihf',
'CC': 'arm-linux-gnueabihf-gcc',
'CXX': 'arm-linux-gnueabihf-g++',
'CC_arm-unknown-linux-gnueabihf': 'arm-linux-gnueabihf-gcc',
'CXX_arm-unknown-linux-gnueabihf': 'arm-linux-gnueabihf-g++',
'PATH': ':'.join([
'{{ common.servo_home }}/bin',
'/usr/local/sbin',
@@ -128,8 +128,8 @@ def without(self, to_unset):

build_arm64 = build_arm + Environment({
'BUILD_TARGET': 'aarch64-unknown-linux-gnu',
'CC': 'aarch64-linux-gnu-gcc',
'CXX': 'aarch64-linux-gnu-g++',
'CC_aarch64-unknown-linux-gnu': 'aarch64-linux-gnu-gcc',
'CXX_aarch64-unknown-linux-gnu': 'aarch64-linux-gnu-g++',
'PATH': ':'.join([
'{{ common.servo_home }}/bin',
'/usr/local/sbin',
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.