annotate script/win32/configure-command-x-mingw @ 49:3ab5a40c4e3b
Add Capnp and KJ builds for OSX
author |
Chris Cannam <cannam@all-day-breakfast.com> |
date |
Tue, 25 Oct 2016 14:48:23 +0100 |
parents |
05254799ed10 |
children |
cd4953afea46 |
rev |
line source |
Chris@4
|
1 #!/bin/bash
|
Chris@4
|
2 mypath=`pwd`/`dirname $0`
|
Chris@4
|
3 deproot="$mypath"/../../
|
Chris@4
|
4 prefix="$deproot"/win32-mingw
|
Chris@34
|
5 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-unknown-windows "$@"
|
Chris@8
|
6
|