DescriptionStig M. Halvorsen
2014-02-10 08:12:32 EST
OSX Mavericks (10.9.1). Apple LLVM version 5.0 (clang-500.2.79) (based on LLVM 3.3svn).
Setting USE_CODEC_VORBIS=1 in Makefile.local gives a linker error related to bad architecture for the vorbis libraries. I have currently no fix for this.
----------
ld: warning: ingoring file /usr/local/lib/libvorbisfile.a, file was built for archive which is not in the architecture being linked (i386): /usr/local/lib/libvorbisfile.a
ld: warning: ingoring file /usr/local/lib/libvorbisfile.a, file was built for archive which is not in the architecture being linked (i386): /usr/local/lib/libvorbisfile.a
Undefined symbols for arccitecture i386
"_ov_clear", referenced from:
_S_OGG_CodecOpenStream in snd_codec_ogg.o
_S_OGG_CodecCloseStream in snd_codec_ogg.o
"_ov_info", referenced from:
_S_OGG_CodecOpenStream in snd_codec_ogg.o
"_ov_open_callbacks", referenced from:
_S_OGG_CodecOpenStream in snd_codec_ogg.o
"_ov_pcm_total", referenced from:
_S_OGG_CodecOpenStream in snd_codec_ogg.o
"_ov_read", referenced from:
_S_OGG_CodecReadStream in snd_codec_ogg.o
"_ov_seekable", referenced from:
_S_OGG_CodecOpenStream in snd_codec_ogg.o
"_ov_streams", referenced from:
_S_OGG_CodecOpenStream in snd_codec_ogg.o
ld: symbol(s) not found for architecture i386
clang: error: linker command failed with exit code 1 (use -v to see invocation)
----------
OSX Mavericks (10.9.1). Apple LLVM version 5.0 (clang-500.2.79) (based on LLVM 3.3svn). Setting USE_CODEC_VORBIS=1 in Makefile.local gives a linker error related to bad architecture for the vorbis libraries. I have currently no fix for this. ---------- ld: warning: ingoring file /usr/local/lib/libvorbisfile.a, file was built for archive which is not in the architecture being linked (i386): /usr/local/lib/libvorbisfile.a ld: warning: ingoring file /usr/local/lib/libvorbisfile.a, file was built for archive which is not in the architecture being linked (i386): /usr/local/lib/libvorbisfile.a Undefined symbols for arccitecture i386 "_ov_clear", referenced from: _S_OGG_CodecOpenStream in snd_codec_ogg.o _S_OGG_CodecCloseStream in snd_codec_ogg.o "_ov_info", referenced from: _S_OGG_CodecOpenStream in snd_codec_ogg.o "_ov_open_callbacks", referenced from: _S_OGG_CodecOpenStream in snd_codec_ogg.o "_ov_pcm_total", referenced from: _S_OGG_CodecOpenStream in snd_codec_ogg.o "_ov_read", referenced from: _S_OGG_CodecReadStream in snd_codec_ogg.o "_ov_seekable", referenced from: _S_OGG_CodecOpenStream in snd_codec_ogg.o "_ov_streams", referenced from: _S_OGG_CodecOpenStream in snd_codec_ogg.o ld: symbol(s) not found for architecture i386 clang: error: linker command failed with exit code 1 (use -v to see invocation) ----------