]> git.lizzy.rs Git - rust.git/commitdiff
Do not ignore errors running llvm-config
authorSeo Sanghyeon <sanxiyn@gmail.com>
Sun, 5 Jan 2014 15:41:54 +0000 (00:41 +0900)
committerSeo Sanghyeon <sanxiyn@gmail.com>
Sun, 5 Jan 2014 15:41:54 +0000 (00:41 +0900)
src/etc/mklldeps.py

index 5563ad5e7ef2d1275eb64a5fc90a7ca35dda13dc..2abe3230c2cdd1edaa0d003613938dcac8268cea 100644 (file)
@@ -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: