We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
CC
CXX
1 parent e68d85d commit 40a29b0Copy full SHA for 40a29b0
scripts/sandbox.py
@@ -50,8 +50,10 @@ def main() -> int:
50
target = "s390x-linux-gnu"
51
additional_arguments = [
52
f"--volume={os.getcwd()}/bin/zig-0.15.1:/mnt",
53
- f"--build-arg=CC=/mnt/zig-0.15.1/zig cc -target {target}",
54
- f"--build-arg=CXX=/mnt/zig-0.15.1/zig c++ -target {target}",
+ f"--env=CC=/mnt/zig-0.15.1/zig cc -target {target}",
+ f"--env=CXX=/mnt/zig-0.15.1/zig c++ -target {target}",
55
+ f"--unsetenv=CC",
56
+ f"--unsetenv=CXX",
57
tmpdir,
58
]
59
command = []
0 commit comments