Merge pull request #301 from OldManYellsAtCloud/main

c_build_helper: Split cc command line
This commit is contained in:
David Horstmann
2026-06-30 10:39:50 +01:00
committed by GitHub
+1 -1
View File
@@ -98,7 +98,7 @@ def compile_c_file(c_filename, exe_filename, include_dirs):
cc = os.getenv('HOSTCC', None)
if cc is None:
cc = os.getenv('CC', 'cc')
cmd = [cc]
cmd = cc.split()
proc = subprocess.Popen(cmd,
stdout=subprocess.DEVNULL,