Skip to content

Instantly share code, notes, and snippets.

@zkxs
Created July 20, 2015 18:11
Show Gist options
  • Save zkxs/d797032f79a128461ad5 to your computer and use it in GitHub Desktop.
Save zkxs/d797032f79a128461ad5 to your computer and use it in GitHub Desktop.
Cross compilation scripts
#!/bin/sh
PREFIX=i686-w64-mingw32
export CC=$PREFIX-gcc
export CXX=$PREFIX-g++
export CPP=$PREFIX-cpp
export RANLIB=$PREFIX-ranlib
exec "$@"
#!/bin/sh
PREFIX=x86_64-w64-mingw32
export CC=$PREFIX-gcc
export CXX=$PREFIX-g++
export CPP=$PREFIX-cpp
export RANLIB=$PREFIX-ranlib
exec "$@"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment