Module: wine Branch: master Commit: ebe0fce6e4a2c89ed322b90c78aa9c942d44d3f1 URL: https://source.winehq.org/git/wine.git/?a=commit;h=ebe0fce6e4a2c89ed322b90c7...
Author: Martin Storsjö martin@martin.st Date: Mon Mar 7 12:05:12 2022 +0200
configure: Tweak PE tools suggestion for ARM64.
llvm-mingw isn't strictly required - plain clang, llvm-dlltool and lld also suffice. Those tools are commonly available in distribution packages.
Signed-off-by: Martin Storsjö martin@martin.st Signed-off-by: Alexandre Julliard julliard@winehq.org
---
configure | 2 +- configure.ac | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/configure b/configure index 3df610cbf11..8cdee2b354a 100755 --- a/configure +++ b/configure @@ -11747,7 +11747,7 @@ esac fi
case $host_cpu in - aarch64*) test "x$CROSSTARGET" != x || as_fn_error $? "PE cross-compilation is required for ARM64, please install llvm-mingw." "$LINENO" 5 ;; + aarch64*) test "x$CROSSTARGET" != x || as_fn_error $? "PE cross-compilation is required for ARM64, please install clang/llvm-dlltool/lld, or llvm-mingw." "$LINENO" 5 ;; esac
diff --git a/configure.ac b/configure.ac index ab3490b21cd..8fcdb15bbad 100644 --- a/configure.ac +++ b/configure.ac @@ -990,7 +990,7 @@ WINE_NOTICE_WITH(mingw,[test "x$CROSSTARGET" = "x"], [MinGW compiler not found, cross-compiling PE files won't be supported.])
case $host_cpu in - aarch64*) test "x$CROSSTARGET" != x || AC_MSG_ERROR([PE cross-compilation is required for ARM64, please install llvm-mingw.]) ;; + aarch64*) test "x$CROSSTARGET" != x || AC_MSG_ERROR([PE cross-compilation is required for ARM64, please install clang/llvm-dlltool/lld, or llvm-mingw.]) ;; esac
dnl **** External libraries ****