1
0
Fork 0
mirror of synced 2025-03-07 03:53:26 +01:00

configure: Stop passing ARM code generation options to winebuild.

They are not needed for PE builds.
This commit is contained in:
Alexandre Julliard 2024-02-23 11:34:31 +01:00
parent 232b18d820
commit 23218818ac
2 changed files with 0 additions and 6 deletions

3
configure vendored
View file

@ -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

View file

@ -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