Skip to content

Instantly share code, notes, and snippets.

@juanpabloaj
Created September 1, 2011 01:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juanpabloaj/1185168 to your computer and use it in GitHub Desktop.
Save juanpabloaj/1185168 to your computer and use it in GitHub Desktop.
vim build configure
#!/bin/bash
git clone https://github.com/b4winckler/vim.git
cd vim
[ -d $HOME/opt ] || mkdir -p $HOME/opt
./configure CFLAGS="-arch i386 -arch x86_64 -O3 -pipe" --prefix=$HOME/opt --enable-pythoninterp --with-features=huge --enable-cscope
make
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment