updated for version 7.0211
This commit is contained in:
@ -28,23 +28,32 @@ MacOS Classic is no longer supported. If you really want it use Vim 6.4.
|
||||
1.1 Carbon interface (default)
|
||||
|
||||
You can compile vim with the standard Unix routine:
|
||||
cd ..
|
||||
./configure
|
||||
make; make install
|
||||
cd .../src
|
||||
make
|
||||
|
||||
This will create a working Vim.app application bundle in the src
|
||||
directory. You can move this bundle (the Vim.app directory) anywhere
|
||||
you want, for example, /Applications.
|
||||
you want. Or use this command to move it to /Applications:
|
||||
make install
|
||||
|
||||
You need at least Xcode 1.5 to compile Vim 7.0.
|
||||
|
||||
Configure will create a universal binary if possible. This requires
|
||||
installing the universal SDK (currently for 10.4).
|
||||
|
||||
To overrule the architecture do this before running make:
|
||||
|
||||
./configure --with-mac-arch=intel
|
||||
or
|
||||
./configure --with-mac-arch=ppc
|
||||
|
||||
|
||||
1.2 X-Windows or Plain Text
|
||||
|
||||
If you do not want the Carbon interface, you must explicitly tell
|
||||
configure to use a different GUI.
|
||||
|
||||
cd ..
|
||||
cd .../src
|
||||
./configure --disable-darwin --enable-gui=gtk2
|
||||
make; make install
|
||||
|
||||
|
||||
Reference in New Issue
Block a user