我正在尝试按照描述的here自己编译VLC,但build.sh抛出了这个错误
make all-am
CCLD libvlccore.la
Undefined symbols for architecture x86_64:
"_iconv", referenced from:
__nl_find_msg in libintl.a(dcigettext.o)
(maybe you meant: _vlc_iconv_open, _vlc_iconv , _vlc_iconv_close )
"_iconv_open", referenced from:
__nl_find_msg in libintl.a(dcigettext.o)
(maybe you meant: _vlc_iconv_open)
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make[3]: *** [libvlccore.la] Error 1
make[2]: *** [all] Error 2
make[1]: *** [all-recursive] Error 1
make: *** [all] Error 2我一点也不知道我该做什么。我正在运行Mac OS 10.8.4和Xcode 4.6.2
发布于 2014-06-19 16:07:10
您可能需要在您的环境中删除对现有包管理器的引用,如fink或macports。
为此,请在执行其他操作之前使用以下命令:https://wiki.videolan.org/OSXCompile#3rd_party_packagers_and_PATH
https://stackoverflow.com/questions/17360418
复制相似问题