search for: libogg_static

Displaying 14 results from an estimated 14 matches for "libogg_static".

2013 Sep 29
2
MSVS: debug flac.exe uses release libogg_static.lib
With current settings, MSVS links debug version of flac.exe (and other .exe and .dll files) with the release version of libogg_static.lib. MSVS issues a "warning LNK4098: defaultlib 'libcmt.lib' conflicts with use of other libs; use /NODEFAULTLIB:library" What's the reason in this setting? What is better: * to change the settings so that MSVS will link debug .exe files with the debug version of libogg_stat...
2013 Sep 29
2
MSVS: debug flac.exe uses release libogg_static.lib
Ralph Giles wrote: >> With current settings, MSVS links debug version of flac.exe (and other >> .exe and .dll files) with the release version of libogg_static.lib. >> MSVS issues a "warning LNK4098: defaultlib 'libcmt.lib' conflicts with use >> of other libs; use /NODEFAULTLIB:library" > > Sounds like a bug. Debug targets should link to debug builds of their > dependencies to simplify debugging. I agree, but accord...
2013 Sep 30
0
MSVS: debug flac.exe uses release libogg_static.lib
lvqcl wrote: > Ralph Giles wrote: > > >> With current settings, MSVS links debug version of flac.exe (and other > >> .exe and .dll files) with the release version of libogg_static.lib. > >> MSVS issues a "warning LNK4098: defaultlib 'libcmt.lib' conflicts with use > >> of other libs; use /NODEFAULTLIB:library" > > > > Sounds like a bug. Debug targets should link to debug builds of their > > dependencies to simplify debugg...
2013 Oct 01
2
MSVS: debug flac.exe uses release libogg_static.lib
On 2013-09-30 4:53 PM, Erik de Castro Lopo wrote: > I'd be keen to have the windows build automatically do the sanest possible thing, > preferably with anyone having to copy files. The way we've been doing the Opus stuff is to have the project files expect a build in a parallel checkout. so: c:\dev\flac\FLAC.sln expects to find an ogg build in c:\dev\ogg\win32\VS2010\ Not as
2013 Oct 02
1
MSVS: debug flac.exe uses release libogg_static.lib
On 2.10.2013 20:27, lvqcl wrote: > Ralph Giles wrote: > >> The way we've been doing the Opus stuff is to have the project files >> expect a build in a parallel checkout. so: >> >> c:\dev\flac\FLAC.sln expects to find an ogg build in >> c:\dev\ogg\win32\VS2010\ >> >> Not as obvious as having a monolithic build, but it seems to work once >>
2013 Mar 17
1
MSVC project updates
One more set of MSVC project updates. Changed ogg_static.lib to libogg_static.lib as that's the name latest version uses. Removed MSVC 6.0 related parts from README and tweaked info there to be more up-to-date. Also changed nasmw.exe into nasm.exe as nasmw.exe has been long gone. LibFLAC_dynamic was complaining in debug mode about conflicts with libcmt, I excluded it...
2013 Oct 03
1
PATCH for all .vcproj files
...r MSIL modules to the linker, the linker eventually detects this and restarts the link by using /LTCG. Explicitly specify /LTCG when you pass /GL and MSIL modules to the linker for the fastest possible build performance." So /LTCG option was added too. And now Debug build uses libogg_static.lib from .\objs\debug\lib folder. (the dependency for both release and debug is objs\$(ConfigurationName)\lib\libogg_static.lib) (not "automatic", but currently "the sanest possible thing", IMHO) -------------- next part -------------- A non-text attachment was scrubbed... Name:...
2014 Jan 09
1
Windows linking problems
...LL" runtime library means dynamic linking: a program requires msvcr80.dll/msvcr90.dll/.../msvcr120.dll to work. Often this means that a MS Visual C++ 20YY redistributable package must be installed into user's system. Also: README file, section "Building with MSVC": "build libogg_static.lib (load win32\libogg_static.sln, change solution configuration to "Release" and code generation to "Multi-threaded (/MT)", then build)". So FLAC linking mode was deliberately set to static aka "Multi-threaded".
2014 Jan 08
2
Windows linking problems
Brendan Bolles wrote: > Phew! I figured it out. > > The FLAC .vcproj files link against "Multi-threaded" instead of > "Multi-threaded DLL". Made the change and things mostly fell into place. Was that a problem in the vcproj files shipped with FLAC or your own personal ones? If it was for the ones shipped with FLAC would you be able to provide a patch or even
2011 Jan 19
1
How to build Theora decoder on VC++ paltform
...libvorbis. Here are the steps to compile libtheora, dump_video, and encoder_example: 1. Download libogg-1.2.2.zip <http://downloads.xiph.org/releases/ogg/libogg-1.2.2.zip> and unpack the zip file into a folder, let say d:\build 2. Build libogg by launching d:\build\libogg-1.2.2\win32\VS2008\libogg_static.sln 3. Download libvorbis-1.3.2.zip <http://downloads.xiph.org/releases/vorbis/libvorbis-1.3.2.zip> and unpack it to d:\build 4. Edit d:\build\libvorbis-1.3.2\win32\VS2008\libogg.vsprops and change LIBOGG_VERSION from 1.1.4 to 1.2.2 5. Build libvorbis by launching d:\build\libvorbis-1.3.2...
2009 Sep 14
1
[libfishsound ] Using static libraries instead of DLLs
Dear, I'm sorry if this is not the correct list to post a question about libfishsound but I don't have found a specific one. I'm writing a library that use libfishsound for encode/decode speex and vorbis streams. I would like to incorporate all the functionalities into my static library without any dependencies on extern DLL. Is there a way to compile libfishsound using ogg, oggz,
2009 Apr 16
2
Query Regarding Vorbis Audio codec
Dear Moderator, I downloaded Vorbis 1.2.0 code from your website and I tried to build a project in Visual studio 2008, as the earlier version was created in VC 6 version it has been modified here. In the solution I have 6 projects vorbis_dynamic, vorbis_static, vorbisenc_dynamic, vorbisenc_static, vorbisfile_dynamic, vorbisfile_static. When I tried to built the project, it shows error that it
2013 Mar 18
0
flac-dev Digest, Vol 100, Issue 42
...rik de Castro Lopo <mle+la at mega-nerd.com> > To: flac-dev at xiph.org > Cc: > Date: Mon, 18 Mar 2013 06:29:22 +1100 > Subject: Re: [flac-dev] MSVC project updates > Janne Hyv?rinen wrote: > > > One more set of MSVC project updates. Changed ogg_static.lib to > > libogg_static.lib as that's the name latest version uses. Removed MSVC > > 6.0 related parts from README and tweaked info there to be more > > up-to-date. Also changed nasmw.exe into nasm.exe as nasmw.exe has been > > long gone. > > LibFLAC_dynamic was complaining in debug mode about...
2017 May 29
0
[PATCH] Add CMake build script
...QUIET ogg) + +find_path(OGG_INCLUDE_DIR ogg/ogg.h HINTS ${PC_OGG_INCLUDEDIR} ${PC_OGG_INCLUDE_DIRS} ${OGG_ROOT} PATH_SUFFIXES include) +# MSVC built ogg may be named ogg_static. +# The provided project files name the library with the lib prefix. +find_library(OGG_LIBRARY NAMES ogg ogg_static libogg libogg_static HINTS ${PC_OGG_LIBDIR} ${PC_OGG_LIBRARY_DIRS} ${OGG_ROOT} PATH_SUFFIXES lib) +# Handle the QUIETLY and REQUIRED arguments and set OGG_FOUND +# to TRUE if all listed variables are TRUE. +include(FindPackageHandleStandardArgs) +find_package_handle_standard_args(Ogg DEFAULT_MSG OGG_INCLUDE_DIR OGG_LIB...