Displaying 5 results from an estimated 5 matches for "flac__crc16_tabl".
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:
bit...
2012 Apr 05
2
FLAC example compilation
Hello,
I still having problem for the compilation.
i do : make -f Makefile.lite
This is the error :
*/usr/bin/ld: bitreader.release.o: relocation R_X86_64_32S against
`FLAC__crc16_table' can not be used when making a shared object; recompile
with -fPIC
bitreader.release.o: could not read symbols: Bad value
collect2: ld returned 1 exit status
make[2]: *** [../../obj/release/lib/libFLAC.so] Erreur 1*
I can see that i must recompile with -fPIC, but i don't know where i have...
2007 Sep 14
2
upcoming release, need help
--- Ralph Giles <giles@xiph.org> wrote:
> On Fri, Sep 14, 2007 at 02:51:34PM -0700, Josh Coalson wrote:
>
> > checked in to CVS is what will be very close to the 1.2.1 release
> > of flac scheduled for monday. if anyone can try building it and
> > even better running the test suite, and reporting back any
> problems,
> > that will help me get things in
2012 Apr 04
2
FLAC example compilation
You can just take a look at the FLAC download page:
http://flac.sourceforge.net/download.html
There are links saying "FLAC full source code and Nightly CVS tarball".
Op 04-04-12 14:30, Rafael Velasquez schreef:
> I have also installe libflac-dev.
> so, could you send me the good link please ?
>
>
>
> 2012/4/4 Erik de Castro Lopo <mle+la at mega-nerd.com
>
2009 Aug 05
2
FLAC 1.2.1 on OS X 10.4.11
...coder_asm.o -lm /
usr/local/lib/libogg.dylib -install_name /usr/local/lib/libFLAC.
8.dylib -Wl,-compatibility_version -Wl,11 -Wl,-current_version -Wl,11.0
ld: .libs/libFLAC.lax/libFLAC-asm.a/bitreader_asm.o has external
relocation entries in non-writable section (__TEXT,__text) for symbols:
FLAC__crc16_table
bitreader_read_from_client_
/usr/bin/libtool: internal link edit command failed
make[4]: *** [libFLAC.la] Error 1
make[3]: *** [all-recursive] Error 1
make[2]: *** [all-recursive] Error 1
make[1]: *** [all-recursive] Error 1
make: *** [all] Error 2
any chance to get the latest version on os x 10...