summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2018-02-19 18:35:32 -0300
committerJames Almer <jamrial@gmail.com>2018-02-19 18:35:32 -0300
commit04a8d5c2d7578456fc4d0a605784bf904cc42a4d (patch)
tree9d113ed686f296c70f9aadc975ac3e3993a649dd /configure
parent6dea6c4b9718132fbe32984942bcafaeb2712f73 (diff)
parentcc1c94dacd0642ac1a6cad45deb65071f127d91a (diff)
Merge commit 'cc1c94dacd0642ac1a6cad45deb65071f127d91a'
* commit 'cc1c94dacd0642ac1a6cad45deb65071f127d91a': configure: Pass the right machine types to dlltool for arm and arm64 mingw Merged-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 4 insertions, 0 deletions
diff --git a/configure b/configure
index 3b06b86a6e..013308cfa4 100755
--- a/configure
+++ b/configure
@@ -4997,6 +4997,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.