Skip to content

Commit 8ef0752

Browse files
committed
Do not ignore errors running llvm-config
1 parent 4eceb00 commit 8ef0752

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/etc/mklldeps.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949

5050
args = [llconfig, '--libs']
5151
args.extend(components)
52-
proc = subprocess.Popen(args, stdout = subprocess.PIPE)
52+
proc = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
5353
out, err = proc.communicate()
5454

5555
if err:

0 commit comments

Comments
 (0)