Mercurial > hg > sv-dependency-builds
view script/win32/configure-command-x-mingw @ 168:ceec0dd9ec9c
Replace these with versions built using an older toolset (so as to avoid ABI compatibilities when linking on Ubuntu 14.04 for packaging purposes)
author | Chris Cannam <cannam@all-day-breakfast.com> |
---|---|
date | Fri, 07 Feb 2020 11:51:13 +0000 |
parents | a0c5ef2265f5 |
children |
line wrap: on
line source
#!/bin/bash mypath=`pwd`/`dirname $0` deproot="$mypath"/../../ prefix="$deproot"/win32-mingw CXX="i686-w64-mingw32-g++ -I$prefix/include -L$prefix/lib" CC="i686-w64-mingw32-gcc -I$prefix/include -L$prefix/lib" ./configure --prefix=$prefix/ --host=i686-w64-mingw32 "$@"