mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-01 05:57:03 +03:00
6a44bbd91b
Use shell-words to parse output from llvm-config llvm-config might output paths that contain spaces, in which case the naive approach of splitting on whitespace breaks; instead we ask llvm-config to quote any paths and use the [shell-words](https://crates.io/crates/shell-words) crate by @tmiasko (a new dependency) to parse the output. r? ChrisDenton Fixes rust-lang/rust#152707