Skip to content

Commit 67691ea

Browse files
committed
unix: remove -v from compiler/linker arguments
This was introduced to debug some sysroot issues. We don't need it any more.
1 parent f0081e1 commit 67691ea

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

cpython-unix/build.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -177,9 +177,6 @@ def add_target_env(env, build_platform, target_triple, build_env):
177177
extra_host_cflags.extend(["-isysroot", host_sdk_path])
178178
extra_host_ldflags.extend(["-isysroot", host_sdk_path])
179179

180-
extra_target_cflags.append("-v")
181-
extra_target_ldflags.append("-v")
182-
183180
env["EXTRA_HOST_CFLAGS"] = " ".join(extra_host_cflags)
184181
env["EXTRA_HOST_LDFLAGS"] = " ".join(extra_host_ldflags)
185182
env["EXTRA_TARGET_CFLAGS"] = " ".join(extra_target_cflags)

0 commit comments

Comments
 (0)