http://bugs.winehq.org/show_bug.cgi?id=24470
Summary: winegcc: 32-bit libs are not found with -m32 on 64-bit host Product: Wine Version: 1.3.3 Platform: x86-64 OS/Version: Linux Status: NEW Keywords: regression Severity: major Priority: P2 Component: build-env AssignedTo: wine-bugs@winehq.org ReportedBy: nerv@dawncrow.de
Use a 64-bit Linux, and save following as main.c:
#include <windows.h> int main(int argc, char **argv) { MessageBoxA(0,"test","app",0); return 0; }
in the folder containing that file type: winegcc main.c -m32 -o main.exe.so
you can verify the normal behaviour with: winegcc main.c -o main64.exe.so
but you will get a 64-bit winelib app.
this worked before, so i added regression. other projects like lmms depend on that, so setting keyword regression
see also Bug 24402