Jack Moffitt
2000-Nov-12 14:49 UTC
[vorbis] This is not going well... but better than before!
those aren't static libs, those are dynamic ones. all the static libs have _static.lib as their ending. (i did that because windows uses two files for dlls, a .lib to link against, and a .dll that you distribute) jack. On Mon, Nov 13, 2000 at 01:34:43AM -0500, CsMafia ;^) wrote:> Ok... > > This is begining to go a bit better.... I have compiled 4 lib's and placed > them in my lib path. > > ogg.lib > vorbis.lib > vorbisenc.lib > vorbisfile.lib > > > When I try and compile oggenc.c I still have link errors.. > > unresolved external symbol _vorbis_comment_clear > unresolved external symbol _optind > unresolved external symbol _optarg > unresolved external symbol _vorbis_comment_add_tag > unresolved external symbol _vorbis_comment_add > unresolved external symbol _vorbis_comment_init > unresolved external symbol _vorbis_info_clear > unresolved external symbol _vorbis_dsp_clear > unresolved external symbol _vorbis_block_clear > unresolved external symbol _ogg_stream_clear > unresolved external symbol _ogg_page_eos > unresolved external symbol _ogg_stream_pageout > unresolved external symbol _vorbis_analysis > unresolved external symbol _vorbis_analysis_blockout > unresolved external symbol _vorbis_analysis_wrote > unresolved external symbol _vorbis_analysis_buffer > unresolved external symbol _ogg_stream_flush > unresolved external symbol _ogg_stream_packetin > unresolved external symbol _vorbis_analysis_headerout > unresolved external symbol _ogg_stream_init > unresolved external symbol _vorbis_block_init > unresolved external symbol _vorbis_analysis_init > unresolved external symbol _vorbis_encode_init > unresolved external symbol _vorbis_info_init > unresolved external symbol __getopt_internal > > > I'm unclear on what to do since when I try to fix these errors, it just > begins to cascage out of control...Oh and which getopt do I want to use? > > -=CsMafia > _________________________________________________________________________ > Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. > > Share information about yourself, create your own public profile at > http://profiles.msn.com. > > > --- >8 ---- > List archives: http://www.xiph.org/archives/ > Ogg project homepage: http://www.xiph.org/ogg/ > To unsubscribe from this list, send a message to 'vorbis-request@xiph.org' > containing only the word 'unsubscribe' in the body. No subject is needed. > Unsubscribe messages sent to the list will be ignored/filtered.--- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.
CsMafia ;^
2000-Nov-12 22:34 UTC
[vorbis] This is not going well... but better than before!
Ok... This is begining to go a bit better.... I have compiled 4 lib's and placed them in my lib path. ogg.lib vorbis.lib vorbisenc.lib vorbisfile.lib When I try and compile oggenc.c I still have link errors.. unresolved external symbol _vorbis_comment_clear unresolved external symbol _optind unresolved external symbol _optarg unresolved external symbol _vorbis_comment_add_tag unresolved external symbol _vorbis_comment_add unresolved external symbol _vorbis_comment_init unresolved external symbol _vorbis_info_clear unresolved external symbol _vorbis_dsp_clear unresolved external symbol _vorbis_block_clear unresolved external symbol _ogg_stream_clear unresolved external symbol _ogg_page_eos unresolved external symbol _ogg_stream_pageout unresolved external symbol _vorbis_analysis unresolved external symbol _vorbis_analysis_blockout unresolved external symbol _vorbis_analysis_wrote unresolved external symbol _vorbis_analysis_buffer unresolved external symbol _ogg_stream_flush unresolved external symbol _ogg_stream_packetin unresolved external symbol _vorbis_analysis_headerout unresolved external symbol _ogg_stream_init unresolved external symbol _vorbis_block_init unresolved external symbol _vorbis_analysis_init unresolved external symbol _vorbis_encode_init unresolved external symbol _vorbis_info_init unresolved external symbol __getopt_internal I'm unclear on what to do since when I try to fix these errors, it just begins to cascage out of control...Oh and which getopt do I want to use? -=CsMafia _________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. Share information about yourself, create your own public profile at http://profiles.msn.com. --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.
Michael Smith
2000-Nov-12 23:14 UTC
[vorbis] This is not going well... but better than before!
At 01:34 AM 11/13/00 EST, you wrote:>Ok... > > This is begining to go a bit better.... I have compiled 4 lib's and placed >them in my lib path. > >ogg.lib >vorbis.lib >vorbisenc.lib >vorbisfile.libAre you actually LINKING against these? Putting them in the path is obviously insufficient, you must tell the compiler to use them (somewhere in the project options link section you can append more libraries to the standard list). Apparently you also don't have getopt - just compile the two(?) getopt files that are supplied with oggenc. They should compile more or less straight off (possibly you'll need to add some extra define to the preprocessor options). You don't need to bother making this into a seperate library - just compile oggenc with these. Michael --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.