no libvlc.lib generated!
Posted: 12 Jul 2008 16:17
Today I built vlc-0.8.6h on Windows XP use cygwin.
I modify the stat.h and wchar.h, for type off_t . The compiler complained that the off_t wasn't a type. So I defined it explicitly, code:
All went OK. I got the zip package. And vlc run mostly OK, except that an unhandled exception was raised when I tried to play a wmv file.
That's not important. I just want to have a libvlc.lib ,thus I can compile my test application based on vlc, under VC++ 2005.
But there no libvlc.lib generated!
Why?
Below is my configure script:
I think I specified some wrong options, or missed some options.
Anyone has similar experience ? Please help me.
Thanks a lot.
I modify the stat.h and wchar.h, for type off_t . The compiler complained that the off_t wasn't a type. So I defined it explicitly, code:
Code: Select all
#ifndef _OFF_T_DEFINED
typedef long off_t;
#define _OFF_T_DEFINED
#endif
That's not important. I just want to have a libvlc.lib ,thus I can compile my test application based on vlc, under VC++ 2005.
But there no libvlc.lib generated!
Why?
Below is my configure script:
Code: Select all
CONTRIB_TREE=/usr/win32-branch
PATH=${CONTRIB_TREE}/bin:$PATH \
./bootstrap && \
CPPFLAGS="-I${CONTRIB_TREE}/include -I${CONTRIB_TREE}/include/ebml" \
LDFLAGS=-L${CONTRIB_TREE}/lib \
PKG_CONFIG_LIBDIR=${CONTRIB_TREE}/lib/pkgconfig \
CC="gcc -mno-cygwin" CXX="g++ -mno-cygwin" \
./configure \
--host=i686-pc-mingw32 \
--enable-sdl --with-sdl-config-path=${CONTRIB_TREE}/bin --disable-gtk \
--enable-nls \
--enable-ffmpeg --with-ffmpeg-mp3lame --with-ffmpeg-faac \
--with-ffmpeg-zlib --enable-faad --enable-flac --enable-theora \
--with-wx-config-path=${CONTRIB_TREE}/bin \
--with-freetype-config-path=${CONTRIB_TREE}/bin \
--with-fribidi-config-path=${CONTRIB_TREE}/bin \
--enable-live555 --with-live555-tree=${CONTRIB_TREE}/live.com \
--enable-caca --with-caca-config-path=${CONTRIB_TREE}/bin \
--with-xml2-config-path=${CONTRIB_TREE}/bin \
--with-dvdnav-config-path=${CONTRIB_TREE}/bin \
--disable-cddax --disable-vcdx --enable-goom \
--enable-twolame --enable-dvdread \
--disable-gnomevfs \
--enable-dts \
--disable-optimizations \
--enable-debug \
--enable-shared-libvlc \
--disable-skins2 \
&& make
Anyone has similar experience ? Please help me.
Thanks a lot.