Commit cc1c94da authored by Martin Storsjö's avatar Martin Storsjö

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

These are supported by llvm-dlltool.
Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
parent 97eee953
......@@ -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.
......
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