0

Ubuntu 15.10 にパッチ 1-712 が含まれている Vim 7.4 用のYouCompleteMeをインストールしようとしています。

次のようなエラーが発生したため、YouCompleteMe を手動でコンパイルしました。

/usr/bin/ld: /usr/local/lib/libpython2.7.a(abstract.o): relocation R_X86_64_32 against `a local symbol' can not be used when making a shared object; recompile with -fPIC

FAQセクションに記載されているように、追加-DPYTHON_LIBRARY=/usr/lib/libpython2.7.soすると解決します。したがって、代わりにこれでコンパイルしました:

cmake -G "Unix Makefiles" -DPYTHON_LIBRARY=/usr/lib/libpython2.7.so . ~/.vim/bundle/YouCompleteMe/third_party/ycmd/cpp

それから:

cmake --build . --target ycm_support_libs --config Release

今回はコンパイル中にエラーは発生しませんでしたが、Vim I を開くと、代わりに次のように表示されます。

   import ycm_client_support
                            ImportError: /home/austin/.vim/bundle/YouCompleteMe/third_party/ycmd/ycm_client_support.so: undefined symbol: PyUnicodeUCS2_AsWideChar















Error detected while processing function youcompleteme#Enable..<SNR>64_SetUpPython:
line   33:
Traceback (most recent call last):
Press ENTER or type command to continue
Error detected while processing function youcompleteme#Enable..<SNR>64_SetUpPython:
line   33:
  File "<string>", line 29, in <module>
Press ENTER or type command to continue
Error detected while processing function youcompleteme#Enable..<SNR>64_SetUpPython:
line   33:
  File "/home/austin/.vim/bundle/YouCompleteMe/autoload/../python/ycm/youcompleteme.py", line 32, in <module>
Press ENTER or type command to continue
Error detected while processing function youcompleteme#Enable..<SNR>64_SetUpPython:
line   33:
    from ycm.omni_completer import OmniCompleter
Press ENTER or type command to continue
Error detected while processing function youcompleteme#Enable..<SNR>64_SetUpPython:
line   33:
  File "/home/austin/.vim/bundle/YouCompleteMe/autoload/../python/ycm/omni_completer.py", line 22, in <module>
Press ENTER or type command to continue
Error detected while processing function youcompleteme#Enable..<SNR>64_SetUpPython:
line   33:
    from ycmd.completers.completer import Completer
Press ENTER or type command to continue
Error detected while processing function youcompleteme#Enable..<SNR>64_SetUpPyth
on:
line   33:
  File "/home/austin/.vim/bundle/YouCompleteMe/autoload/../third_party/ycmd/ycmd
/completers/completer.py", line 25, in <module>
Press ENTER or type command to continue
Error detected while processing function youcompleteme#Enable..<SNR>64_SetUpPyth
on:
line   33:
    from ycm_client_support import FilterAndSortCandidates
Error detected while processing function youcompleteme#Enable..<SNR>64_SetUpPyth
on:
line   33:
ImportError: /home/austin/.vim/bundle/YouCompleteMe/third_party/ycmd/ycm_client_
support.so: undefined symbol: PyUnicodeUCS2_AsWideChar

これを修正する方法を知っている人はいますか?

4

1 に答える 1

0

これは、Python FAQ => https://docs.python.org/2/faq/extending.html#when-importing-module-x-why-do-i-get-undefined-symbol-で説明されている問題のようです。 pyunicodeucs2

「この問題を解決する唯一の方法は、Unicode 文字と同じサイズを使用して構築された Python バイナリでコンパイルされた拡張モジュールを使用することです。」

それを使用して、Python の Unicode 文字のサイズをテストすることができます。

import sys
if sys.maxunicode > 65535:
  print 'UCS4 build'
else:
  print 'UCS2 build'
于 2015-11-03T11:32:59.103 に答える