Wiki

Clone wiki

beremiz / matiec build instructions

Compile/Build

Compiling under GNU/Linux

#!bash
$ autoreconf -i
$ ./configure
$ make

Cross-Compiling under GNU/Linux, for Windows

#!bash
$ ./configure  --host=i586-pc-mingw32
(or, to use static linking, which does not require installing any mingw dll's on windows)
#!bash
$ ./configure --host=i586-pc-mingw32 LDFLAGS="-static"
$ make

Cross-Compiling under Bash on Ubuntu on Windows

#!bash
$ sudo apt-get install build-essential bison flex autoconf automake libtool make git mercurial mingw-w64
#!bash
$ ./configure --host=x86_64-w64-mingw32
(or, to use static linking, which does not require installing any mingw dll's on windows)
#!bash
$ ./configure --host=x86_64-w64-mingw32 LDFLAGS="-static"
$ make

Updated