https://github.com/Microsoft/CNTK
Raw File
Tip revision: b09e37e280ce668c300e606e10ad842112afc570 authored by Ratan Rai Sur on 26 July 2017, 18:48:45 UTC
wip: enable scripted maven release
Tip revision: b09e37e
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