使用Python3(通过Homebrew安装)支持编译vim?

时间:2011-05-28 19:52:20

标签: python vim python-3.x osx-snow-leopard

我通过自制软件安装了python3:brew install python3 --framework

我在/usr/src

下载了vim源(7.3)

我跑:

./configure --prefix=/usr/local --enable-rubyinterp --enable-python3interp --disable-gpm --enable-gui=no --enable-multibyte

在我的src/auto/config.log我看到了:

configure:5442: checking --enable-python3interp argument   
configure:5451: result: yes  
configure:5456: checking for python3  
configure:5489: result: no

我搜索了一些,发现this,所以我尝试为python3.2制作符号链接,然后像这样运行configure:

./configure --prefix=/usr/local --enable-rubyinterp --enable-python3interp --disable-gpm --enable-gui=no --enable-multibyte --with-python3-config-dir=/usr/local/Cellar/python3/3.2/Frameworks/Python.framework/Versions/3.2/lib/python3.2/config-3.2m

我的日志显示同样的错误。我需要做些什么来使用Python3支持编译vim?

不,我不想使用MacVim。


➜ ls -al /System/Library/Frameworks/Python.framework/Versions 
total 16
drwxr-xr-x   7 root  wheel  238 May 28 15:33 .
drwxr-xr-x   7 root  wheel  238 Sep 21  2010 ..
drwxr-xr-x   8 root  wheel  272 Sep 17  2010 2.3
drwxr-xr-x  12 root  wheel  408 Dec  1 12:49 2.5
drwxr-xr-x  12 root  wheel  408 Dec  1 12:49 2.6
lrwxr-xr-x   1 root  wheel   70 May 28 15:33 Current -> /usr/local/Cellar/python3/3.2/Frameworks/Python.framework/Versions/3.2
lrwxr-xr-x   1 root  wheel    3 Sep 17  2010 old-Current -> 2.6

➜ which python3.2
/usr/local/bin/python3.2

更新:我已经通过Homebrew使用Python 2.7.1运行la this post,但仍然对Python 3没有兴趣......

3 个答案:

答案 0 :(得分:6)

配置脚本存在问题。从python 3.2开始,config和include目录包含了abiflag(参见PEP 3149)。

下一个问题是configure脚本解析了python配置,并且链接器的标志对于框架构建是不正确的,因此configure脚本中的测试程序无法构建。

我已经向vim发送了一个补丁,它已被包含在内(mercurial repo有它)。

`./configure --enable-python3interp vi_cv_path_python3=/usr/local/bin/python3.2`

应该有用。

Vim补丁: https://github.com/codedreality/vim/tree/fix-python3x-support

MacVim补丁: https://github.com/codedreality/macvim/tree/fix-python3x-support

答案 1 :(得分:2)

当您测试它是否有效时,请确保使用构建创建的Vim二进制文件 - 而不是mvim脚本。 mvim(即使你在源代码树上调用该版本)将首先在/ Applications / for MacVim.app中查找。

也许这会给你一些快乐:

./configure \
  --enable-python3interp=dynamic \
  --with-python3-config-dir=/usr/local/Cellar/python3/3.2/Frameworks/Python.framework/Versions/3.2/lib/python3.2/config/

答案 2 :(得分:0)

我改变了macvim标题栏的颜色是黑色的。我的macvim colorsechme是ayu dark。 更改macvim MMWindow.m第93行,附加以下代码:

[self setTitleVisibility:NSWindowTitleHidden];
[self setTitlebarAppearsTransparent:YES];
self.backgroundColor = NSColor.blackColor;

使用以下命令编译器源代码:

./configure --with-features=huge --enable-multibyte --with-macarchs=x86_64 --enable-perlinterp --enable-rubyinterp --enable-tclinterp --enable-terminal --enable-python3interp --with-properly-linked-python2-python3 --enable-python3interp=yes --enable-cscope 

enter image description here