How do I compile the latest gvim from source

Tom

I have found that I need to compile the lastest gvim due to a bug I have reported, but how do I proceed?

mjr

Run the following commands in the terminal.

sudo apt-get build-dep vim-gnome

to get all the build dependencies you need. Then

sudo apt-get install mercurial

to get the Mercurial version control system needed to download the latest Vim source code. Then

hg clone https://vim.googlecode.com/hg/ vim

to download the Vim source code to the subdirectory vim of the current directory.

cd vim/src

to change to the right directory

Now let's configure Vim for compilation (with "huge" features - see http://www.drchip.org/astronaut/vim/vimfeat.html for a description of the different feature sets)

./configure --prefix=/usr/local --with-features=huge

If ./configure finished without any problems, then run

make

and then

sudo make install

and that should be it.

To update Vim to the latest version, just go into the vim directory and run

hg pull
hg update

and then re-run configure, make and make install.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How do I compile the latest gvim from source

From Dev

How to compile a gvim from source using the latest version?

From Dev

How do I compile from source on github?

From Dev

How do I compile and use liboverlay-scrollbar from source?

From Dev

How do I compile gcc-5 from source?

From Dev

How do I compile source into the kernel?

From Dev

How do you compile a project from source?

From Dev

how do I compile a whole Frege source tree

From Dev

How do I compile and install the source code on OpenShift?

From Dev

how do I deal with make errors during samsung source compile

From Dev

Where is the source code of Ubuntu and how do I compile it?

From Dev

How do I customize the gvim toolbar?

From Dev

gVim - What is ctags, and how do I use it?

From Dev

How can I create a temporary sandbox to compile from source?

From Dev

How to compile readline from source?

From Dev

How to compile Evolution from source

From Dev

How do I build libcurl from source?

From Dev

How do I build Unity from source?

From Dev

How do I build libcurl from source?

From Dev

How do I compile the latest apache2 on ubuntu using the original layout, configuration and configure options

From Dev

How do I copy the latest file from one directory to another?

From Dev

How do I install the latest version of cmake from the command line?

From Dev

How do I pull the latest copy of the code from a branch?

From Dev

how do i get the latest meta id from database automatically

From Dev

How do I copy the latest file from one directory to another?

From Dev

How do I install the latest version of cmake from the command line?

From Dev

How do I Install the latest Virtual Box from the command line?

From Dev

Should I compile a library from source?

From Dev

Should I compile a library from source?

Related Related

  1. 1

    How do I compile the latest gvim from source

  2. 2

    How to compile a gvim from source using the latest version?

  3. 3

    How do I compile from source on github?

  4. 4

    How do I compile and use liboverlay-scrollbar from source?

  5. 5

    How do I compile gcc-5 from source?

  6. 6

    How do I compile source into the kernel?

  7. 7

    How do you compile a project from source?

  8. 8

    how do I compile a whole Frege source tree

  9. 9

    How do I compile and install the source code on OpenShift?

  10. 10

    how do I deal with make errors during samsung source compile

  11. 11

    Where is the source code of Ubuntu and how do I compile it?

  12. 12

    How do I customize the gvim toolbar?

  13. 13

    gVim - What is ctags, and how do I use it?

  14. 14

    How can I create a temporary sandbox to compile from source?

  15. 15

    How to compile readline from source?

  16. 16

    How to compile Evolution from source

  17. 17

    How do I build libcurl from source?

  18. 18

    How do I build Unity from source?

  19. 19

    How do I build libcurl from source?

  20. 20

    How do I compile the latest apache2 on ubuntu using the original layout, configuration and configure options

  21. 21

    How do I copy the latest file from one directory to another?

  22. 22

    How do I install the latest version of cmake from the command line?

  23. 23

    How do I pull the latest copy of the code from a branch?

  24. 24

    how do i get the latest meta id from database automatically

  25. 25

    How do I copy the latest file from one directory to another?

  26. 26

    How do I install the latest version of cmake from the command line?

  27. 27

    How do I Install the latest Virtual Box from the command line?

  28. 28

    Should I compile a library from source?

  29. 29

    Should I compile a library from source?

HotTag

Archive