New comment by alekseyt on void-packages repository https://github.com/void-linux/void-packages/pull/25576#issuecomment-709241173 Comment: Hmm. Maybe Lua: https://www.lua.org/versions.html#5.4 ```bash $ make mingw CC=x86_64-w64-ming32-gcc ``` and then run it with Wine: `wine ./src/lua.exe` This is C. As for C++, perhaps CppUnit will do? https://www.freedesktop.org/wiki/Software/cppunit/ ```bash $ LDFLAGS="-static-libgcc -static-libstdc++ -static" ./configure --host=x86_64-w64-mingw32 --disable-doxygen $ make ``` and then again run with wine: `WINEPATH=/usr/x86_64-w64-mingw32/bin wine ./examples/simple/simple.exe` Generally any simple project should be buildable with regard to cross-compiling specifics. Please let me know if i can help with anything else.