Skip to content

Instantly share code, notes, and snippets.

@valters-tomsons
Created August 13, 2020 05:31
Show Gist options
  • Save valters-tomsons/f8df3a44704fd2dd9619429ecb5ca59f to your computer and use it in GitHub Desktop.
Save valters-tomsons/f8df3a44704fd2dd9619429ecb5ca59f to your computer and use it in GitHub Desktop.
#!/bin/sh
mkdir build-64
cd build-64 || exit
../configure --disable-tests --enable-win64 --with-mingw
make -j8
cd .. || exit
mkdir build-32
cd build-32 || exit
../configure --disable-tests --with-mingw --with-wine64=../build-64
make -j8
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment