Commit 04a8d5c2 authored by James Almer's avatar James Almer

Merge commit 'cc1c94da'

* commit 'cc1c94da':
  configure: Pass the right machine types to dlltool for arm and arm64 mingw
Merged-by: 's avatarJames Almer <jamrial@gmail.com>
parents 6dea6c4b cc1c94da
......@@ -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.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment