Rollup merge of #31276 - alexcrichton:fix-powerpc64-cross-prefix, r=brson

Looks like the way to create these executables is to use the standard
`powerpc-linux-gnu-gcc` compiler but with the `-m64` option.
This commit is contained in:
Manish Goregaokar 2016-01-29 20:19:39 +05:30
commit 7a0e490bdd
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
# powerpc64-unknown-linux-gnu configuration
CROSS_PREFIX_powerpc64-unknown-linux-gnu=powerpc64-linux-gnu-
CROSS_PREFIX_powerpc64-unknown-linux-gnu=powerpc-linux-gnu-
CC_powerpc64-unknown-linux-gnu=$(CC)
CXX_powerpc64-unknown-linux-gnu=$(CXX)
CPP_powerpc64-unknown-linux-gnu=$(CPP)