mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 15:54:15 +00: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:
commit
8fc148f991
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user