diff options
| author | Rich Felker <dalias@aerifal.cx> | 2016-02-19 00:10:23 -0500 |
|---|---|---|
| committer | Rich Felker <dalias@aerifal.cx> | 2016-02-19 00:10:23 -0500 |
| commit | 4c101e158a59eafb8adbfeabab13a8747e4a97cb (patch) | |
| tree | d2881f4c33723aef74958f2931781b87d9b07d08 | |
| parent | 71c334f951d9ffa4d8bdc71bdd49628e5ae4512b (diff) | |
| download | musl-4c101e158a59eafb8adbfeabab13a8747e4a97cb.tar.gz | |
add arch tuple matching for nt32 and nt64 in configure
the nt32 and nt64 archs will be provided by the midipix project for
building musl on top of its posix-like syscall layer for windows. at
present the needed arch files are in a separate repository, but having
the tuple matching in the upstream configure script should make it
possible to overlay the arch files without needing any further
patching.
| -rwxr-xr-x | configure | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -302,8 +302,10 @@ case "$target" in mips64*|powerpc64*) fail "$0: unsupported target \"$target\"" ;; arm*) ARCH=arm ;; aarch64*) ARCH=aarch64 ;; +i?86-nt32*) ARCH=nt32 ;; i?86*) ARCH=i386 ;; x86_64-x32*|x32*|x86_64*x32) ARCH=x32 ;; +x86_64-nt64*) ARCH=nt64 ;; x86_64*) ARCH=x86_64 ;; mips*) ARCH=mips ;; microblaze*) ARCH=microblaze ;; |
