mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-22 02:00:00 +03:00
auto merge of #11323 : sanxiyn/rust/llvm-config, r=alexcrichton
Standard error was not captured, ignoring any errors from llvm-config.
This commit is contained in:
+1
-1
@@ -49,7 +49,7 @@ for llconfig in sys.argv[3:]:
|
||||
|
||||
args = [llconfig, '--libs']
|
||||
args.extend(components)
|
||||
proc = subprocess.Popen(args, stdout = subprocess.PIPE)
|
||||
proc = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||
out, err = proc.communicate()
|
||||
|
||||
if err:
|
||||
|
||||
Reference in New Issue
Block a user