mirror of
https://github.com/Mbed-TLS/mbedtls-framework.git
synced 2026-09-20 00:47:23 +00:00
Merge pull request #301 from OldManYellsAtCloud/main
c_build_helper: Split cc command line
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user