I built and installed Wine 10.7 on the ARM64 Linux device. I ran winecfg, and that seems to run successfully creating a ~/.wine directory.
I then created the following simple Windows program...
Code: Select all
#include <windows.h>
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) {
MessageBox(NULL, "Hello from Winelib on ARM64!", "Test", MB_OK);
return 0;
}
Code: Select all
winebuild: tools/winebuild/import.c:677: output_import_thunk: Assertion `0' failed.
winegcc: /usr/local/bin/winebuild failed
Is building Windows applications for ARM64 Linux using Winelib not a supported use case?