configure should provide hints of checking dependencies where possible when running on 64-bit platforms.
Signed-off-by: Adhir Ramjiawan adhirramjiawan0@gmail.com --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure b/configure index 27fb2fd..1a6d36f 100755 --- a/configure +++ b/configure @@ -5620,7 +5620,7 @@ rm -f core conftest.err conftest.$ac_objext \ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $wine_cv_cc_m32" >&5 $as_echo "$wine_cv_cc_m32" >&6; } - test $wine_cv_cc_m32 != no || as_fn_error $? "Cannot build a 32-bit program, you need to install 32-bit development libraries." "$LINENO" 5 + test $wine_cv_cc_m32 != no || as_fn_error $? "Cannot build a 32-bit program, you need to install 32-bit development libraries. For 64-bit installation run with --enable-win64." "$LINENO" 5 host_cpu="i386" notice_platform="32-bit " TARGETFLAGS="-m32"
You should modify configure.ac instead. That way, the change will persist after configure is regenerated from configure.ac.
Chip
Ah thanks. Will do that.
On Mon, 11 May 2020 at 21:01, Chip Davis cdavis@codeweavers.com wrote:
You should modify configure.ac instead. That way, the change will persist after configure is regenerated from configure.ac.
Chip