mirror of
https://github.com/firewalkwithm3/qmk_firmware.git
synced 2024-11-22 11:30:30 +08:00
Fix compilation-database command under MSYS (#15652)
* Fix compilation-database command under MSYS * Add comment
This commit is contained in:
parent
906108fb48
commit
1a8a842cfb
|
@ -26,7 +26,8 @@ def system_libs(binary: str) -> List[Path]:
|
||||||
|
|
||||||
# Actually query xxxxxx-gcc to find its include paths.
|
# Actually query xxxxxx-gcc to find its include paths.
|
||||||
if binary.endswith("gcc") or binary.endswith("g++"):
|
if binary.endswith("gcc") or binary.endswith("g++"):
|
||||||
result = cli.run([binary, '-E', '-Wp,-v', '-'], capture_output=True, check=True, input='\n')
|
# (TODO): Remove 'stdin' once 'input' no longer causes issues under MSYS
|
||||||
|
result = cli.run([binary, '-E', '-Wp,-v', '-'], capture_output=True, check=True, stdin=None, input='\n')
|
||||||
paths = []
|
paths = []
|
||||||
for line in result.stderr.splitlines():
|
for line in result.stderr.splitlines():
|
||||||
if line.startswith(" "):
|
if line.startswith(" "):
|
||||||
|
|
Loading…
Reference in a new issue