Displaying 3 results from an estimated 3 matches for "_flac__crc16_table".
Did you mean:
flac__crc16_table
2008 Jan 05
0
Assembly on Mac OS needs to be relocatable
...I don't really know assembly, but based on <http://www.zathras.de/angelweb/blog-intel-assembler-on-mac-os-x.htm
>, I tried the following fix:
In c1_loop:
%ifdef FLAC__PUBLIC_NEEDS_UNDERSCORE
+%ifdef OBJ_FORMAT_macho
+ call .epilog
+.myAnchorPoint:
+ lea edi, [ebx + .myAnchorPoint + _FLAC__crc16_table]
+%else
mov edi, _FLAC__crc16_table
+%endif
%else
mov edi, FLAC__crc16_table
%endif
And then right before the end of the entire function:
ret
+%ifdef OBJ_FORMAT_macho+;; Needed for Mach-O PIC
+.epilog:
+ mov ebx, [esp]
+ ret
+%endif
+
end
That wasn't very helpful:
bitr...
2010 Nov 17
2
Problem building libFLAC on Windows x64
...VC 2008 and the
following steps that I've put together:
http://mixxx.org/wiki/doku.php/build_windows_dependencies#libflac
The problems I have are the following:
If I try to build the dynamic version, I get two unresolved externals:
bitreader_asm.obj : error LNK2001: unresolved external symbol _FLAC__crc16_table
bitreader_asm.obj : error LNK2001: unresolved external symbol
_bitreader_read_from_client_
..\..\obj\release\lib\libFLAC_dynamic.dll : fatal error LNK1120: 2
unresolved externals
I can build the static version fine, but when Mixxx tries to link it
in, I get different unresolved externals:
soundsou...
2010 Nov 17
0
Problem building libFLAC on Windows x64
...eps that I've put together:
> http://mixxx.org/wiki/doku.php/build_windows_dependencies#libflac
>
> The problems I have are the following:
>
> If I try to build the dynamic version, I get two unresolved externals:
> bitreader_asm.obj : error LNK2001: unresolved external symbol _FLAC__crc16_table
> bitreader_asm.obj : error LNK2001: unresolved external symbol
> _bitreader_read_from_client_
> ..\..\obj\release\lib\libFLAC_dynamic.dll : fatal error LNK1120: 2
> unresolved externals
>
> I can build the static version fine, but when Mixxx tries to link it
> in, I get differ...