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

Allow build-examples to build darwin-x64-rpc-console #11807

Merged
merged 3 commits into from
Nov 16, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/cirque.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,8 @@ jobs:
chip_build_tests=false \
enable_host_gcc_build=true \
enable_host_gcc_mbedtls_build=false \
enable_host_clang_build = false
enable_host_clang_build=false \
enable_fake_tests=false
- name: Run Tests
timeout-minutes: 25
run: |
Expand Down
16 changes: 9 additions & 7 deletions build/toolchain/host/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,14 @@ gcc_toolchain("${host_os}_${host_cpu}_clang") {
}
}

gcc_toolchain("fake_${host_cpu}_gcc") {
toolchain_args = {
current_os = host_os
current_os = host_os
current_cpu = host_cpu
is_clang = false
chip_fake_platform = true
if (defined(chip_fake_plaform)) {
gcc_toolchain("fake_${host_cpu}_gcc") {
toolchain_args = {
current_os = host_os
current_os = host_os
current_cpu = host_cpu
is_clang = false
chip_fake_platform = true
}
}
}