summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2018-02-17 00:17:21 +0200
committerMartin Storsjö <martin@martin.st>2018-02-19 12:36:41 +0200
commitcc1c94dacd0642ac1a6cad45deb65071f127d91a (patch)
tree4fbd773fd08b8a769e367dd2f86250e62afbcd35
parent97eee953e639bd4d17a9f9398293775277d00505 (diff)
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>
-rwxr-xr-xconfigure4
1 files changed, 4 insertions, 0 deletions
diff --git a/configure b/configure
index 06fb839a18..1c35f9dc64 100755
--- a/configure
+++ b/configure
@@ -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.