https://github.com/Microsoft/CNTK
Raw File
Tip revision: 1e1a589394e24abc855b608220761a1724a5606b authored by Aayush Garg on 25 November 2016, 16:06:45 UTC
Repro changes
Tip revision: 1e1a589
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