diff options
| author | Richard Diamond <wichard@vitalitystudios.com> | 2018-07-18 22:03:39 -0500 |
|---|---|---|
| committer | Richard Diamond <wichard@vitalitystudios.com> | 2018-08-20 16:26:17 -0500 |
| commit | 1c0603e55fdfd17fb7960967856a89482ff7543b (patch) | |
| tree | 1631cad736ea31c2bc39b56569f8be7fa47e9d31 | |
| parent | 6ff72a1cfd9298b1e8de5fd9a8182a87fbc318fe (diff) | |
Actually enable the amdgpu component if present.
| -rw-r--r-- | src/librustc_llvm/build.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_llvm/build.rs b/src/librustc_llvm/build.rs index 4e24a26983d..7d01ed556c8 100644 --- a/src/librustc_llvm/build.rs +++ b/src/librustc_llvm/build.rs @@ -81,7 +81,7 @@ fn main() { let is_crossed = target != host; let mut optional_components = - vec!["x86", "arm", "aarch64", "mips", "powerpc", + vec!["x86", "arm", "aarch64", "amdgpu", "mips", "powerpc", "systemz", "jsbackend", "webassembly", "msp430", "sparc", "nvptx"]; let mut version_cmd = Command::new(&llvm_config); |
