Quantcast
Channel: Vimタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 5608

vim7.4をソースからインストール

$
0
0

最新版を取得

wget http://ftp.vim.org/pub/vim/unix/vim-7.4.tar.bz2
tar jxvf vim-7.4.tar.bz2
cd vim74/

パッチ用のディレクトリを作成

mkdir patches
cd patches/

パッチを取得(2013/10/16時点)

seq -f http://ftp.vim.org/pub/vim/patches/7.4/7.4.%03g 052 | xargs wget
cd ..

パッチをあてる

cat patches/7.4.* | patch -p0

src/Makfileを修正

これをやらないとsedが戻らなくなる
http://www40.atwiki.jp/hirukiyo/m/pages/18.html

インストール

# インストール先を/usr/local/vim74にして、古いvimも共存させる。
# リモートホストのvimを使う想定。
./configure --prefix=/usr/local/vim74 --disable-selinux --enable-multibyte --with-features=huge --enable-pythoninterp --prefix=/usr/local/vim74 --disable-netbeans --enable-perlinterp --disable-xsmp-interact --disable-xsmp --without-x --disable-gui

# コンパイル
make

# makeでperl関連のエラーが出たら以下
yum -y install perl-ExtUtils-Embed

# インストール
make install

古いvimと入れ替え

prefix指定なしでconfigureしていればこの手順はいらないと思う。

# 古いvimをmv
mv /usr/bin/vim /usr/bin/vim72

# 新しいvimをパスに入れる
ln -s /usr/bin/vim /usr/local/vim74/bin/vim

Viewing all articles
Browse latest Browse all 5608

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>