- mingw-w64
sudo apt-get install mingw-w64
git clone --recurse-submodules https://github.com/wxWidgets/wxWidgets.git cd wxWidgets mkdir winbuild
Tags can be found here:
cd wxWidgets git checkout v3.2.6
cd wxWidgets git checkout master git pull git submodule update git checkout v3.2.6
cd winbuild ../configure --prefix=/usr/x86_64-w64-mingw32 --host=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --with-msw --enable-unicode --disable-shared --enable-graphics_ctx --enable-monolithic --enable-stc --enable-debug=no make sudo make install
cd win32build ../configure --prefix=/usr/i686-w64-mingw32 --host=i686-w64-mingw32 --target=i686-w64-mingw32 --with-msw --enable-unicode --disable-shared --enable-graphics_ctx LDFLAGS=-static --enable-monolithic --enable-stc --enable-debug=no make sudo make install
git clone <repository link> cd Rocrail
cd Rocrail git pull
cd rocs make fromtar all cp unxbin/ogen winbin cp unxbin/wgen winbin cp unxbin/xml2cstr winbin cp unxbin/png2wx winbin
make all DEBUG= PLATFORM=WIN64 TOOLPREFIX=x86_64-w64-mingw32- LIBSUFFIX=-x86_64-w64-mingw32 MINGWINSTALL=/usr/x86_64-w64-mingw32 WXCONFIG=/usr/x86_64-w64-mingw32/bin/wx-config
make all PLATFORM=WIN32 TOOLPREFIX=i686-w64-mingw32- LIBSUFFIX=-i686-w64-mingw32 MINGWINSTALL=/usr/i686-w64-mingw32 WXCONFIG=/usr/i686-w64-mingw32/bin/wx-config