From 0b801a4215bb566603aa0f2ac7a590644b355bb6 Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Fri, 31 Jul 2020 16:45:28 +0200 Subject: [PATCH] configure: Use *-windows instead of *-windows-gnu as fallback cross compiler target. Signed-off-by: Jacek Caban Signed-off-by: Alexandre Julliard --- configure | 4 ++-- configure.ac | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/configure b/configure index 443e986ed5b..f2a18e7682e 100755 --- a/configure +++ b/configure @@ -9885,8 +9885,8 @@ $as_echo "$wine_cv_crosscc" >&6; } if test -z "$llvm_target" then case $host_cpu in - *i[3456789]86*) llvm_target=i686-windows-gnu ;; - *) llvm_target=$host_cpu-windows-gnu ;; + *i[3456789]86*) llvm_target=i686-windows ;; + *) llvm_target=$host_cpu-windows ;; esac fi case $llvm_target in diff --git a/configure.ac b/configure.ac index dea25b0c3f1..65a7c5d6252 100644 --- a/configure.ac +++ b/configure.ac @@ -1060,8 +1060,8 @@ then if test -z "$llvm_target" then case $host_cpu in - *i[[3456789]]86*) llvm_target=i686-windows-gnu ;; - *) llvm_target=$host_cpu-windows-gnu ;; + *i[[3456789]]86*) llvm_target=i686-windows ;; + *) llvm_target=$host_cpu-windows ;; esac fi case $llvm_target in