about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-03-16 11:55:39 +0000
committerbors <bors@rust-lang.org>2015-03-16 11:55:39 +0000
commit80a0d8223d527d8adf2a4a2a4d3856af98df69f7 (patch)
tree96683ea76020d6145a0ee330958660baa0c285cb
parent857ac28867722111249b5c3ef68e32499bd11ea0 (diff)
parenta0297cbe1264a9bb61c883b47519288ada713e77 (diff)
downloadrust-80a0d8223d527d8adf2a4a2a4d3856af98df69f7.tar.gz
rust-80a0d8223d527d8adf2a4a2a4d3856af98df69f7.zip
Auto merge of #23404 - richo:ppc-configure, r=sanxiyn
Finally making progress on a fully native toolchain. Specifically, this makes it possible to move forward by building librustllvm on the target platform.
-rwxr-xr-xconfigure5
1 files changed, 4 insertions, 1 deletions
diff --git a/configure b/configure
index 760203ae5cf..fdc28eee8c8 100755
--- a/configure
+++ b/configure
@@ -461,7 +461,10 @@ case $CFG_CPUTYPE in
         CFG_CPUTYPE=aarch64
         ;;
 
-    powerpc)
+    # At some point, when ppc64[le] support happens, this will need to do
+    # something clever. For now it's safe to assume that we're only ever
+    # interested in building 32 bit.
+    powerpc | ppc | ppc64)
         CFG_CPUTYPE=powerpc
         ;;