https://github.com/Microsoft/CNTK
Raw File
Tip revision: ca352f5eb79a53d63a2b7dd436c9fb40a1f1412c authored by Mark Hillebrand on 03 November 2016, 16:11:40 UTC
Scripts/README.md: minimal documentation for binary drop install scripts
Tip revision: ca352f5
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