Module: wine Branch: master Commit: 23218818acd33467c04b13397f029e0195a7c56a URL: https://gitlab.winehq.org/wine/wine/-/commit/23218818acd33467c04b13397f029e0...
Author: Alexandre Julliard julliard@winehq.org Date: Fri Feb 23 11:34:31 2024 +0100
configure: Stop passing ARM code generation options to winebuild.
They are not needed for PE builds.
---
configure | 3 --- configure.ac | 3 --- 2 files changed, 6 deletions(-)
diff --git a/configure b/configure index 5407d32205f..026966a800d 100755 --- a/configure +++ b/configure @@ -6364,10 +6364,8 @@ printf "%s\n" "$wine_cv_thumb2" >&6; } if test x"$wine_cv_thumb2" = xyes then CFLAGS="$CFLAGS -mthumb" - TARGETFLAGS="$TARGETFLAGS -mthumb" else CFLAGS="$CFLAGS -marm" - TARGETFLAGS="$TARGETFLAGS -marm" fi case $with_float_abi in soft|softfp|hard) @@ -6418,7 +6416,6 @@ printf "%s\n" "$wine_cv_float_abi" >&6; } ;; esac CFLAGS="$CFLAGS -mfloat-abi=$float_abi" - TARGETFLAGS="$TARGETFLAGS -mfloat-abi=$float_abi" ;; esac
diff --git a/configure.ac b/configure.ac index ad5e43d2d7e..2909bea2460 100644 --- a/configure.ac +++ b/configure.ac @@ -146,10 +146,8 @@ case $host in if test x"$wine_cv_thumb2" = xyes then CFLAGS="$CFLAGS -mthumb" - TARGETFLAGS="$TARGETFLAGS -mthumb" else CFLAGS="$CFLAGS -marm" - TARGETFLAGS="$TARGETFLAGS -marm" fi case $with_float_abi in soft|softfp|hard) @@ -174,7 +172,6 @@ case $host in ;; esac CFLAGS="$CFLAGS -mfloat-abi=$float_abi" - TARGETFLAGS="$TARGETFLAGS -mfloat-abi=$float_abi" ;; esac