https://github.com/Microsoft/CNTK
Raw File
Tip revision: ce767fe260b528a1393f572fd25609151cc77653 authored by Ivan Stojiljkovic on 23 December 2016, 17:51:08 UTC
Address CR feedback (Iteration 9)
Tip revision: ce767fe
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