Skip to content

Populate CXX during builds to avoid calling the system toolchain #545

New issue

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

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

Already on GitHub? # to your account

Merged
merged 1 commit into from
Mar 5, 2025
Merged
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: 3 additions & 0 deletions cpython-unix/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,9 @@ def add_target_env(env, build_platform, target_triple, build_env):
env["HOST_CC"] = settings["host_cc"]
env["HOST_CXX"] = settings["host_cxx"]
env["CC"] = settings["target_cc"]
# We always set CXX, otherwise a build could bypass our toolchain
# accidentally, e.g., on macOS where `g++` links to the system clang.
env["CXX"] = settings.get("target_cxx", settings.get("host_cxx"))

if settings.get("bolt_capable"):
env["BOLT_CAPABLE"] = "1"
Expand Down