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

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

$
0
0

度々ググってるので、メモっておく。 ※2014/05/29現在

# 必要なパッケージをインストール
yum -y install gcc python python-devel ncurses-devel python-setuptools perl-ExtUtils-Embed

# ソースとってくる
cd /usr/local/src
hg clone https://vim.googlecode.com/hg/ vim

# 更新
hg pull
hg update

./configure \
--prefix=/usr/local/vim \
--enable-fail-if-missing \
--enable-fontset \
--enable-perlinterp \
--enable-pythoninterp \
--enable-cscope \
--enable-multibyte \
--with-x=no \
--disable-gui \
--disable-xim \
--with-features=huge \
--disable-selinux \
--disable-gpm \
--disable-darwin

make && make install

Viewing all articles
Browse latest Browse all 5608

Trending Articles



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