http://bugs.winehq.org/show_bug.cgi?id=17340
Summary: winebuild does not respect --host & --target configure parameters Product: Wine Version: unspecified Platform: Other OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: tools AssignedTo: wine-bugs@winehq.org ReportedBy: cruiseoveride@gmail.com
As the title suggests, winebuild does not use the compiler triplet specified at configure time.
I noticed this problem when building on 64bit Fedora.
I keep a handy dandy toolchain (i386-linux-xxxxx) for building 32bit apps.
But winebuild refuses to use it (but the rest of the gnu make build is fine)
winebuild could be modified by autoconf/automake to reflect the proper default toolchain.
eg. in tools/winebuild/main.c 86 char *as_command = NULL; 87 char *ld_command = NULL;
The NULLs can be changed to @LD@ and @AS@ and taken from autoconf
Thank you.