Skip to content

Commit

Permalink
Mention the architecture problem during compilation.
Browse files Browse the repository at this point in the history
Originally submitted at:
  #44

Signed-off-by: Wincent Colaiuta <win@wincent.com>
  • Loading branch information
pelletier authored and wincent committed May 28, 2012
1 parent 341d0e5 commit 795cd32
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions doc/command-t.txt
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -156,6 +156,20 @@ of the following commands:
rvm use system rvm use system
rbenv local system rbenv local system


Note: Make sure you compile targeting the same architecture Vim was built for.
For instance, MacVim binaries are built for i386, but sometimes GCC compiles
for x86_64. First you have to check the platfom Vim was built for:

vim --version
...
Compilation: gcc ... -arch i386 ...
...

and make sure you use the correct ARCHFLAGS during compilation:

export ARCHFLAGS="-arch i386"
make



MANAGING USING PATHOGEN *command-t-pathogen* MANAGING USING PATHOGEN *command-t-pathogen*


Expand Down

0 comments on commit 795cd32

Please sign in to comment.