configure: recognize x86_64-x32 and x32
authorrofl0r <retnyg@gmx.net>
Tue, 7 Jan 2014 22:30:30 +0000 (23:30 +0100)
committerrofl0r <retnyg@gmx.net>
Sun, 23 Feb 2014 10:09:33 +0000 (11:09 +0100)
commit3e4b2cdc1b3b881ffdcd8f2119a7bf850f01954d
tree41f3745afe561560854f893eb50ce60153946c52
parent664cd341921007cea52c8891f27ce35927dca378
configure: recognize x86_64-x32 and x32

x32 is the internal arch name, but glibc uses x86_64-x32.
there doesn't exist a specific triple for x32 in gcc and binutils.
you're supposed to build your compiler for x86_64 and configure
it with multilib support for "mx32".

however it turns out that using a triple of x86_64-x32 makes
gcc and binutils pick up the right arch (they detect it as x86_64)
and allows us to have a unique triple for cross-compiler toolchains.
configure