Commit dc46af72 authored by Martin Storsjo's avatar Martin Storsjo Committed by Alexandre Julliard

winebuild: Pass -m options to dlltool for arm and arm64.

This allows using the arch independent llvm-dlltool without the llvm-mingw specific <triple>-dlltool wrappers. Signed-off-by: 's avatarMartin Storsjo <martin@martin.st> Signed-off-by: 's avatarJacek Caban <jacek@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent e9fa452b
......@@ -1856,6 +1856,14 @@ static void build_windows_import_lib( DLLSPEC *spec )
m_flag = "i386:x86-64";
as_flags = "--as-flags=--64";
break;
case CPU_ARM:
m_flag = "arm";
as_flags = NULL;
break;
case CPU_ARM64:
m_flag = "arm64";
as_flags = NULL;
break;
default:
m_flag = NULL;
break;
......
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