Displaying 20 results from an estimated 2000 matches similar to: "libFLAC_static / CMake"
2010 Jun 21
0
Flac in Sox
Hi,
I didn't get any answer for my problem at sox mailing list. May be
someone on this list has an idea...?
I want to compile libsox.lib with Flac-handler. So I first compiled
"libFLAC_static.lib" without problems. Then I changed "CMakeLists.txt":
I added this line:
set(CMAKE_REQUIRED_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES} libFLAC_static.lib)
and now Have_Flac is found.
2004 Sep 10
0
Linking against libFLAC_static.lib using MSVC
I'm having a hell of a time linking against libFLAC_static.lib on Win32:
link -out:blib\arch\auto\Audio\FLAC\Decoder\Decoder.dll -dll -nologo -nodefaultlib -debug -opt:ref,icf -libpath:"C:\Perl\lib\CORE" -machine:x86 Decoder.obj libflacsupport.lib C:\Perl\lib\CORE\perl58.lib C:\Perl\lib\CORE\libFLAC_static.lib -def:Decoder.def
Creating library
2012 Mar 23
0
Trying to link against libFLAC_static.lib (windows)
On 3/23/2012 13:59, Glenn McCord wrote:
> Hi. I'm trying to get a project linking to libFLAC_static.lib but I
> get linker errors such as the following.
>
> The __imp__ prefix seems to imply that some kind of .dll usage is
> happening, which it shouldn't.
>
> All I need is the C lib, so I just build libFLAC_static from within
> VS2010 (I've converted the
2012 Mar 26
0
Trying to link against libFLAC_static.lib (windows)
On 3/26/2012 06:52, Glenn McCord wrote:
>>
>> Did you compile the dll earlier? If so, you can try cleaning the project
>> and rebuilding.
>
> I've compiled the .dll earlier, but they've now all been deleted. They
> would have been built when I built the entire solution (and thus all
> the projects). I've subsequently deleted them and just built the
>
2012 Mar 25
2
Trying to link against libFLAC_static.lib (windows)
On Fri, Mar 23, 2012 at 9:45 PM, JonY <jon_y at users.sourceforge.net> wrote:
> On 3/23/2012 13:59, Glenn McCord wrote:
>> Hi. I'm trying to get a project linking to libFLAC_static.lib but I
>> get linker errors such as the following.
>>
>> The __imp__ prefix seems to imply that some kind of .dll usage is
>> happening, which it shouldn't.
>>
2012 Mar 23
2
Trying to link against libFLAC_static.lib (windows)
Hi. I'm trying to get a project linking to libFLAC_static.lib but I
get linker errors such as the following.
6>AudioDecoder.lib(CFlacDecoder.obj) : error LNK2019: unresolved
external symbol
__imp__FLAC__stream_decoder_process_until_end_of_metadata referenced
in function "protected: int __thiscall
CFlacDecoder::CreateDecoder(void)"
(?CreateDecoder at CFlacDecoder@@IAEHXZ)
2008 Sep 20
4
[LLVMdev] State of CMake build system.
IMHO, the CMake-based build system is almost complete enough to replace
current MSVC++ project files (modulo some community review and
bug-fixing). Is this enough for adding it to the LLVM repo?
>From the point of view of a MSVC++ user, the new build system is trivial
to maintain: you can add a new library or tool executable in less time
that it takes to open the project file on MSVC++, it
2002 Sep 11
1
patch for FLAC
Hey,
Sesse asked me to do a patch to the auto* set-up to allow for FLAC to be
added.
The patch touches configure.in and oggenc/Makefile.am
It is disabled by default, use --enable-flac as an arg to configure
to enable it.
You might want to maybe add more checks, since FLAC's API tends to change
more than is good for anyone ;)
Hope that helps,
Thomas
--
The Dave/Dina Project : future
2008 Sep 21
0
[LLVMdev] State of CMake build system.
On Sep 20, 2008, at 2:22 PM, Óscar Fuentes wrote:
> IMHO, the CMake-based build system is almost complete enough to
> replace
> current MSVC++ project files (modulo some community review and
> bug-fixing). Is this enough for adding it to the LLVM repo?
Yes.
>> From the point of view of a MSVC++ user, the new build system is
>> trivial
> to maintain: you can add a
2013 Mar 11
0
flac 1.3.0pre2 pre-release
On 11.3.2013 13:05, Erik de Castro Lopo wrote:
>> It includes Ben Allison's MSVC changes and JonY's MinGW changes with
>> some tweaks to make both environments happy.
> Please don't do that. Adding bits of other patches makes it more
> difficult to evaluate and review this patch which is already difficult
> to review because of its size.
Sorry, I'm new at
2014 Apr 03
2
[LLVMdev] r204593 breaks Asan tests on FreeBSD
Hello Alexey,
I just worked out the config for the FreeBSD 9.2 buildbot (follows
below). One important thing about this config is that the C++11 headers
are set up at the /usr/include/c++/v1 directory--it's where clang
expects them to be on FreeBSD, so no need for the "-I" options in the
CMAKE_CXX_FLAGS variable. Unfortunately, clang (both v3.3 used to be the
default compiler
2014 Sep 17
2
[LLVMdev] proposal to avoid zlib dependency.
On 17 September 2014 16:34, Mueller-Roemer, Johannes Sebastian
<Johannes.Sebastian.Mueller-Roemer at igd.fraunhofer.de> wrote:
> I'll have another look tomorrow.
Thanks.
> IMO, it is unnecessary clutter. It will fail if ${ZLIB_LIBRARIES} or ${ZLIB_INCLUDE_DIRS} are used anyways as they will be set to NOTFOUND. Or we go back to a silent-fail solution:
Fair enough. I've never
2019 Jul 14
1
Prelease now available
Janne Hyvärinen wrote:
> Minor changes needed for Visual Studio as the version is defined in the
> project files.
>
> Replace 'PACKAGE_VERSION=\"1.3.2\"' with
> 'PACKAGE_VERSION=\"1.3.3rc1\"' in
> src/libFLAC/libFLAC_dynamic.vcproj and libFLAC_static.vcproj. And
> replace 'PACKAGE_VERSION="1.3.2"' with
2010 Feb 08
0
Use FLAC__stream_encoder_init_FILE instead of FLAC__stream_encoder_init_file
Hi, I use the libflac to encoder wav files to flac, my code:
FLAC__StreamEncoder *encoder = 0;
>
>
>> if((encoder = FLAC__stream_encoder_new()) == NULL)
>
> {
>
> printf(_T("ERROR: allocating encoder"));
>
> return;
>
> }
>
>
>> FLAC__stream_encoder_set_channels ( encoder, 2 );
>
> FLAC__stream_encoder_set_bits_per_sample (
2008 Oct 26
1
[LLVMdev] Header files on VC project (was: Growing up CMake)
Argiris Kirtzidis <akyrtzi at gmail.com> writes:
> Óscar Fuentes wrote:
>> All the headers in include/llvm? Or just those local to each library?
>>
>
> All the headers. It's a pain to manually update the project files but it
> will be a bigger pain trying to use them without the include files..
> included.
There are almost 300 headers under include/llvm.
2008 Oct 12
2
[LLVMdev] Genlibdeps.pl, CMake and MSYS
Kenneth Boyd <zaimoni at zaimoni.com> writes:
>> I'm seeing a failure related to circular library references while
>> building LLVM with CMake and MSYS. This didn't happen on the
>> past. Building with the configure script works, so it seems something
>> related to CMake. Do you have any insight on this?
>>
> I'll get back on this tonight or
2008 Jul 30
2
[LLVMdev] Is there room for another build system?
Chris Lattner <clattner at apple.com> writes:
> Ok. Killing off autoconf would be a huge bonus, but should probably
> be done as a second step.
My plan is a staged one:
First, support MSVC++.
Second, implement what `configure' does now. MSVC++ users would be the
first ones to take advantage of this, instead of the current hack Visual
Studio does.
Finally, add capabilities
2013 Mar 17
1
Patch to remove the dead in_flac project from the MSVC solution
Solution file still contained the removed in_flac project causing
unnecessary errors on load.
-------------- next part --------------
--- FLAC.sln.orig Wed Mar 13 18:23:38 2013
+++ FLAC.sln Sat Mar 16 19:14:43 2013
@@ -57,14 +57,6 @@ Project("{4cefbc7c-c215-11db-8314-080020
{4cefbc89-c215-11db-8314-0800200c9a66} = {4cefbc89-c215-11db-8314-0800200c9a66}
EndProjectSection
EndProject
2007 Mar 13
2
flac fails encoding 88.2
I do the following to init flac:
encoder = FLAC__stream_encoder_new();
e = FLAC__stream_encoder_set_do_mid_side_stereo (encoder,
numChannels == 2);
e = FLAC__stream_encoder_set_loose_mid_side_stereo (encoder,
numChannels == 2);
e = FLAC__stream_encoder_set_channels (encoder, numChannels);
e = FLAC__stream_encoder_set_bits_per_sample (encoder, jmin (24,
2005 May 25
0
[PATCH] Fix fuction prototypes/definitions with void argument
Hi,
the patch below fixes function prototypes/defintions with void
argument to shut up the heartful warnings by recent gcc :)
It doesn't cover all places, e.g. test directories.
The patch is to 1.1.2.
Takashi
--- src/metaflac/operations.c-dist 2005-05-25 16:20:02.000000000 +0200
+++ src/metaflac/operations.c 2005-05-25 16:20:09.000000000 +0200
@@ -26,7 +26,7 @@
#include <stdlib.h>