Mercurial > hg > sv-dependency-builds
annotate script/win64/configure-command-x-mingw64 @ 70:9e21af8f0420
Opus for Windows (MSVC)
author | Chris Cannam |
---|---|
date | Fri, 25 Jan 2019 12:15:58 +0000 |
parents | 05254799ed10 |
children |
rev | line source |
---|---|
Chris@4 | 1 #!/bin/bash |
Chris@4 | 2 mypath=`pwd`/`dirname $0` |
Chris@4 | 3 deproot="$mypath"/../../ |
Chris@34 | 4 prefix="$deproot"/win64-mingw |
Chris@34 | 5 CXX="x86_64-w64-mingw32-g++ -I$prefix/include -L$prefix/lib" CC="x86_64-w64-mingw32-gcc -I$prefix/include -L$prefix/lib" ./configure --prefix=$prefix/ --host=x86_64-unknown-windows "$@" |
Chris@8 | 6 |