configure: Pass the right machine types to dlltool for arm and arm64 mingw

These are supported by llvm-dlltool.

Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
Martin Storsjö 2018-02-17 00:17:21 +02:00
parent 97eee953e6
commit cc1c94dacd
1 changed files with 4 additions and 0 deletions

4
configure vendored
View File

@ -3894,6 +3894,10 @@ case $target_os in
LIBTARGET=i386
if enabled x86_64; then
LIBTARGET="i386:x86-64"
elif enabled arm; then
LIBTARGET="arm"
elif enabled aarch64; then
LIBTARGET="arm64"
fi
if enabled shared; then
# Cannot build both shared and static libs when using dllimport.