On 27 July 2010 01:08, Bryan Ross wrote: > Hey all > I just did an update and tried to build MacVim 7.3, and got the following > error: >>> >>> ** BUILD FAILED ** > > Here's how I updated and build (from the macvim73 branch): > $: git pull > $: git clean -dfx > $: ./configure --with-features=huge --enable-pythoninterp > --enable-rubyinterp --enable-cscope --enable-perlinterp --with-macarchs=i386 > CFLAGS="-arch i386" LDFLAGS="-arch i386" CXXFLAGS="-arch i386" > CPPFLAGS="-arch i386" 2>&1 > configure.output.log > $: make 2>&1 > make.output.log > Is there something I did wrong? Or have I run into a bug?
Hi Bryan, The problem is that Xcode leaves temporary files in weird locations and when you use "git clean" these files do not get removed. Try "make clean" instead of "git clean" before building. If that doesn't work you'll have to delete the folders that Xcode complains about, i.e. (this is from your make log): cc1obj: error: /var/folders/7Z/7Z6zPxl9FJewZCV17DHOck+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/AppKit-fxzlaqhwvmwiopgagtfcvqmeflqy/AppKit.h: No such file or directory So I would delete the folder called "SharedPrecompiledHeaders" and then Xcode usually gets back on track. Björn -- You received this message from the "vim_mac" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php
