This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [ -z $1 ] | |
then | |
echo "USAGE: $0 <test file without extension>"; | |
echo "EXAMPLE: $0 TestQuickSort"; | |
exit 1; | |
fi | |
cat > .build <<EOF |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
./configure --with-x --with-features=huge --enable-rubyinterp \ | |
--enable-pythoninterp --with-python-config-dir=/usr/lib/python2.7/config \ | |
--enable-gui=gtk2 --enable-cscope --prefix=/usr --enable-gtk2-check | |
make VIMRUNTIMEDIR=/usr/share/vim/vim74 | |
sudo make install | |
#Set vim as your default editor with update-alternatives. |
NewerOlder