Displaying 20 results from an estimated 8000 matches similar to: "linking against the static libraries"
2004 Nov 16
2
RE: basic encoder help
>I'm currently facing the same problem.
>I added the libFLAC++ libraries to my MSVC application.
>I implemented the same quality levels (0-8) as used in the FLAC frontend application.
>But the resulting files are remarkable different between my application and the FLAC frontend >(although using the same settings).
It did turn out to be something in my byte ordering in the end
2004 Nov 05
1
RE: basic encoder help
I'm currently facing the same problem.
I added the libFLAC++ libraries to my MSVC application.
I implemented the same quality levels (0-8) as used in the FLAC frontend application.
But the resulting files are remarkable different between my application and the FLAC frontend (although using the same settings).
for example:
FLAC frontend (quality = 8)
--------------------------------
2016 Jan 16
0
MSVC, win_utf8_io, static and dynamic libs
Currently MSVS can build dynamic libraries (libFLAC_dynamic.dll,
libFLAC++_dynamic.dll), static libraries (libFLAC_static.lib,
libFLAC++_static.lib) and executables (flac.exe, metaflac.exe, etc).
All executables are statically linked to libFLAC. It's possible to
create a flac.exe that is linked to thr libFLAC DLL file, but it
requires manual editing of various projects in the FLAC solution.
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
2003 Jun 16
2
using win32 static libs
hi,
i hope this is not too "newbie-ish" but i've never programmed with static libs before.
i've downloaded the win32sdk and try to build a simple wav->ogg/vorbis encoder, but the linker complained about several redefinitions.
environment is visual studio .net 2003 on winxp and a standard mfc-app set up by this project-wizzard that comes with vs.net2003 using the default
2014 Jan 07
0
Windows linking problems
Brendan Bolles wrote:
> If someone would be so kind as to take a look, I have a branch set up, ready to show you the problem (after you download the Premiere SDK). I've posted this as a GitHub issue here:
>
It looks like the linker cannot find libFLAC_static.lib and libFLAC++_static.lib.
By default FLAC moves them to objs/release/lib/ (or objs/debug/lib/) folder.
2014 Jan 07
2
Windows linking problems
On Jan 7, 2014, at 3:12 AM, lvqcl wrote:
> It looks like the linker cannot find libFLAC_static.lib and libFLAC++_static.lib.
> By default FLAC moves them to objs/release/lib/ (or objs/debug/lib/) folder.
Unfortunately, I don't think that's it. Visual Studio gives me a specific error when it can't find a certain library file.
I think these are the errors you get when a
2018 Oct 19
2
systemd automount of cifs share hangs
>
> But if I start the automount unit and ls the mount point, the shell hangs
> and eventually, a long time later (I haven't timed it, maybe an hour), I
> eventually get a prompt again. Control-C won't interrupt it. I can still
> ssh in and get another session so it's just the process that's accessing
> the mount point that hangs.
>
I don't have a
2015 Aug 31
1
[PATCH] MSVC project dependencies
For some reasons libFLAC_dynamic, libFLAC++_dynamic and
libFLAC++_static projects depend on win_utf8_io_static project,
but there's no such dependency for libFLAC_static project.
The patch adds such dependency.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: win_utf8_dependency.patch
Type: application/octet-stream
Size: 1484 bytes
Desc: not available
Url :
2013 Sep 01
1
New routine: FLAC__lpc_compute_autocorrelation_asm_ia32_sse_lag_16
Erik de Castro Lopo <mle+la at mega-nerd.com> wrote:
> Well first of all, none of them apply :-).
I'll try to redo the necessary patches with git.
> * Remove restrict definition from include/share/compat.h. Applied.
BTW, I tried to use 'restrict' keyword with MSVS 2010 and 2012 and in fact they don't support it. Only --restrict is supported.
> * libFLAC and
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.
>>
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
2010 Jul 16
0
libFLAC_static / CMake
Hello,
trying to compile a project with MSVC++ and libFLAC_static.lib I have a
CMakeLists.txt with this:
set(CMAKE_REQUIRED_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES} libFLAC_static.lib)
optional(HAVE_FLAC FLAC/all.h libFLAC_static FLAC__stream_encoder_new flac)
optional(STATIC_FLAC FLAC/all.h libFLAC_static FLAC__stream_encoder_new
flac)
CMake answer (the *.lib is always found):
Looking for
2018 Jul 11
3
LMTP crashing heavily for my 2.2.36 installation
Hi,
I'm running 2.2.36 (as provided by openSUSE in their server:mail
repository) and at least at one of my systems LMTP is crashing regularly on
certain messages (apparently a lot of them).
Sometimes (but not always a backtrace is posted to the logs:
2018-07-11T07:34:56.741848+02:00 saruman dovecot: lmtp(14690): Fatal:
master: service(lmtp): child 14690 killed with signal 11 (core dumps
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)
2018 Jul 11
4
LMTP crashing heavily for my 2.2.36 installation
On Wed, Jul 11, 2018 at 10:46 AM, Timo Sirainen <tss at iki.fi> wrote:
> On 11 Jul 2018, at 8.41, Wolfgang Rosenauer <wrosenauer at gmail.com> wrote:
> >
> > I'm running 2.2.36 (as provided by openSUSE in their server:mail
> repository) and at least at one of my systems LMTP is crashing regularly on
> certain messages (apparently a lot of them).
> >
>
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
2018 Feb 13
2
Failover problems with gluster 3.8.8-1 (latest Debian stable)
I'm using gluster for a virt-store with 3x2 distributed/replicated
servers for 16 qemu/kvm/libvirt virtual machines using image files
stored in gluster and accessed via libgfapi. Eight of these disk images
are standalone, while the other eight are qcow2 images which all share a
single backing file.
For the most part, this is all working very well. However, one of the
gluster servers