search for: 5f86809

Displaying 2 results from an estimated 2 matches for "5f86809".

Did you mean: 5f868090
2017 Feb 14
2
Flac build issue in debug win x32
Hi Guys, The following code in CPU.c (line 155) won't link if you don't have NASM code built even if FLAC__HAS_X86INTRIN is true as FLAC__cpu_info_asm_ia32 don't exists and the else is compiled if there is no dead code stripping if (FLAC__HAS_X86INTRIN) { FLAC__cpu_info_x86(0, &flags_eax, &flags_ebx, &flags_ecx, &flags_edx); info->ia32.intel =
2017 Feb 20
0
Flac build issue in debug win x32
...> > Maybe it should be an ifdef instead of an if ? > > Thanks ! > -- Olivier Tristan Research & Development www.uvi.net -------------- next part -------------- src/libFLAC/cpu.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libFLAC/cpu.c b/src/libFLAC/cpu.c index 5f86809..4bad89c 100644 --- a/src/libFLAC/cpu.c +++ b/src/libFLAC/cpu.c @@ -118,7 +118,9 @@ ia32_cpu_info (FLAC__CPUInfo *info) FLAC__cpu_info_x86(1, &flags_eax, &flags_ebx, &flags_ecx, &flags_edx); } else { +#if FLAC__HAS_NASM FLAC__cpu_info_asm_ia32(&flags_edx, &flags_ec...