lollipop7081 has asked for the wisdom of the Perl Monks concerning the following question:
====================================================================== +======= SECTION 35 - BUILDING VIM FROM SOURCE 35.1. How do I build Vim from the sources on a Unix system? For a Unix system, follow these steps to build Vim from the sources: - Download the source and run-time filles archive (vim-##.tar.bz2) fro +m the ftp://ftp.vim.org/pub/vim/unix directory. - Extract the archive using the bzip2 and tar utilities using the com +mand: $ bunzip2 -c <filename> | tar -xf - - Run the 'make' command to configure and build Vim with the default configuration. - Run 'make install' command to installl Vim in the default directory. To enable/disable various Vim features, before running the 'make' comm +and you can run the 'configure' command with different flags to include/ex +clude the various Vim features. To list all the available options for the 'configure' command, use: $ configure -help For more information, read :help install 35.2. How do I install Vim in my home directory or a directory other than the default installation directory in Unix? To install Vim in a directory other than the default installation directory, you have to specify the directory using the --prefix option while running the configure script. $ ./configure --prefix=/users/xyz You can enable/disable various Vim feature by supplying different argu +ments to the configure script. For more information about all these options, + run $ ./configure --help For more information, read :help install-home :help install
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Formatting Text...Again
by idsfa (Vicar) on May 21, 2006 at 20:33 UTC | |
by GrandFather (Saint) on May 21, 2006 at 21:03 UTC | |
|
Re: Formatting Text...Again
by GrandFather (Saint) on May 21, 2006 at 20:42 UTC | |
by Anonymous Monk on May 22, 2006 at 02:22 UTC | |
by GrandFather (Saint) on May 22, 2006 at 02:41 UTC | |
by lollipop7081 (Novice) on May 22, 2006 at 03:03 UTC | |
by GrandFather (Saint) on May 22, 2006 at 03:07 UTC | |
by SamCG (Hermit) on May 22, 2006 at 13:51 UTC | |
by lollipop7081 (Novice) on May 22, 2006 at 02:24 UTC | |
by cdarke (Prior) on May 22, 2006 at 11:56 UTC | |
|
Re: Formatting Text...Again
by moklevat (Priest) on May 21, 2006 at 22:38 UTC |