瀏覽代碼

Fix compilation-database command under MSYS (#15652)

* Fix compilation-database command under MSYS

* Add comment
Joel Challis 3 年之前
父節點
當前提交
1a8a842cfb
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2 1
      lib/python/qmk/cli/generate/compilation_database.py

+ 2 - 1
lib/python/qmk/cli/generate/compilation_database.py

@@ -26,7 +26,8 @@ def system_libs(binary: str) -> List[Path]:
 
     # Actually query xxxxxx-gcc to find its include paths.
     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 = []
         for line in result.stderr.splitlines():
             if line.startswith(" "):