https://github.com/Microsoft/CNTK
Raw File
Tip revision: b8544c177606ce9e10fc20a9a1d0d08ff2d6d7ac authored by Mark Hillebrand on 20 January 2017, 11:24:32 UTC
Bump NuGet package versions
Tip revision: b8544c1
swig_install.sh
#!/bin/bash

wget http://prdownloads.sourceforge.net/swig/swig-3.0.10.tar.gz

tar xvfz swig-3.0.10.tar.gz

pushd swig-3.0.10

./configure --without-java --without-perl5 --prefix=$(readlink -m ./root)

make -j 4

make install
back to top