search for: strip_fpic

Displaying 18 results from an estimated 18 matches for "strip_fpic".

2004 Sep 10
2
1.0 candidate checked in
...============================================================ RCS file: /cvsroot/flac/flac/src/libFLAC/ia32/Makefile.am,v retrieving revision 1.7 diff -u -r1.7 Makefile.am --- src/libFLAC/ia32/Makefile.am 2001/07/22 07:26:58 1.7 +++ src/libFLAC/ia32/Makefile.am 2001/07/22 09:40:35 @@ -21,7 +21,7 @@ STRIP_FPIC = sh $(top_srcdir)/strip_fPIC.sh .nasm.lo: - $(LIBTOOL) --mode=compile $(STRIP_FPIC) $(NASM) -f $(OBJ_FORMAT) -d OBJ_FORMAT_$(OBJ_FORMAT) $< -o $@ + $(LIBTOOL) --mode=compile $(STRIP_FPIC) $(NASM) -f $(OBJ_FORMAT) -d OBJ_FORMAT_$(OBJ_FORMAT) -I $(srcdir)/ $< -o $@ noinst_LTLIBRARIES = l...
2004 Sep 10
5
1.0 candidate checked in
...immerman wrote: > Argh. Maybe libtool will have to get involved after all. I'll work on it > this afternoon. I think I give up. automake and libtool assume that the compiler will be able to assemble stuff, and compilers don't generally understand NASM input. I don't like the strip_fPIC bit, since just about anything that could go in CFLAGS might be passed by libtool, and nasm doesn't understand compiler flags. However, I can't come up with anything better at the moment, and this seems to work for SDL, so I guess we go back to src/libFLAC/ia32/Makefile.am version 1.5 (plu...
2004 Sep 10
2
1.0 candidate checked in
..., Jul 19, 2001 at 10:38:14AM -0700, Josh Coalson wrote: > > > So, last chance to checkout from CVS and break it! > > Also, my libtool doesn't seem to recognize --tag=CC. What is its purpose? > > /bin/sh ../../../libtool --tag=CC --mode=compile \ > sh ../../../strip_fPIC.sh nasm -f elf -d OBJ_FORMAT_elf cpu_asm.nasm > libtool: unrecognized option `--tag=CC' > Try `libtool --help' for more information. Once I removed that, it also seems to hate the .nasm extension: /bin/sh ../../../libtool --mode=compile \ sh ../../../strip_fPIC.sh nasm -f el...
2004 Sep 10
3
patches for flac build
...hird patch fixes a linking bug for the xmms plugin. (does the xmms plugin link out-of-the-box on other platforms?) --- src/libFLAC/i386/Makefile.am.orig Thu May 24 12:28:48 2001 +++ src/libFLAC/i386/Makefile.am @@ -1,9 +1,15 @@ # nasm build rule: -%.lo: %.s - $(NASM) -f elf -d ELF $< -o $@ + +STRIP_FPIC = sh $(top_srcdir)/strip_fPIC.sh + +SUFFIXES = .asm + +.asm.lo: + $(LIBTOOL) --tag=CC --mode=compile \ + $(STRIP_FPIC) $(NASM) -f elf -d ELF $< noinst_LTLIBRARIES = libFLAC-asm.la libFLAC_asm_la_SOURCES = \ - cpu_asm.s \ - fixed_asm.s \ - lpc_asm.s + cpu_asm.asm \ + fixed_asm.asm \ + lpc_as...
2004 Sep 10
4
1.0 candidate checked in
I have checked in what should be the code for 1.0. Unless I find some problems in the next two days (I'm doing one more exhaustive test on another 100 CDs) the only thing that will be changing is the new comparison table or maybe the configure stuff. So, last chance to checkout from CVS and break it! Josh P.S. Thanks to Andrey Astafiev, there's a Russian translation of the docs, which
2004 Sep 10
2
1.0 candidate checked in
...; > So, last chance to checkout from CVS and break it! > > > > > > Also, my libtool doesn't seem to recognize --tag=CC. What is its > > > purpose? > > > > > > /bin/sh ../../../libtool --tag=CC --mode=compile \ > > > sh ../../../strip_fPIC.sh nasm -f elf -d OBJ_FORMAT_elf > > > cpu_asm.nasm > > > libtool: unrecognized option `--tag=CC' > > > Try `libtool --help' for more information. > > > > My libtool errored with a message instructing me to specify a tag. > > I put --tag=CC just...
2004 Sep 10
2
1.0 candidate checked in
..., Jul 19, 2001 at 10:38:14AM -0700, Josh Coalson wrote: > > > So, last chance to checkout from CVS and break it! > > Also, my libtool doesn't seem to recognize --tag=CC. What is its purpose? > > /bin/sh ../../../libtool --tag=CC --mode=compile \ > sh ../../../strip_fPIC.sh nasm -f elf -d OBJ_FORMAT_elf cpu_asm.nasm > libtool: unrecognized option `--tag=CC' > Try `libtool --help' for more information. My libtool errored with a message instructing me to specify a tag. I put --tag=CC just to make it compile, I don't understand the actual problem....
2004 Sep 10
2
1.0 candidate checked in
.../Makefile.am =================================================================== RCS file: /cvsroot/flac/flac/src/libFLAC/ia32/Makefile.am,v retrieving revision 1.5 diff -u -r1.5 Makefile.am --- ia32/Makefile.am 2001/07/16 18:04:19 1.5 +++ ia32/Makefile.am 2001/07/20 20:21:58 @@ -20,14 +20,13 @@ STRIP_FPIC = sh $(top_srcdir)/strip_fPIC.sh -.nasm.lo: - $(LIBTOOL) --tag=CC --mode=compile \ - $(STRIP_FPIC) $(NASM) -f $(OBJ_FORMAT) -d OBJ_FORMAT_$(OBJ_FORMAT) $< +.nasm.o: + $(NASM) -f $(OBJ_FORMAT) -d OBJ_FORMAT_$(OBJ_FORMAT) $< #@@@OLD RULE: $(NASM) -f $(OBJ_FORMAT) -d OBJ_FORMAT_$(OBJ_FORMA...
2004 Sep 10
0
1.0 candidate checked in
...ol will have to get involved after all. I'll > work on it > > this afternoon. > > I think I give up. automake and libtool assume that the compiler > will be able > to assemble stuff, and compilers don't generally understand NASM > input. I > don't like the strip_fPIC bit, since just about anything that could > go in > CFLAGS might be passed by libtool, and nasm doesn't understand > compiler flags. > > However, I can't come up with anything better at the moment, and this > seems to > work for SDL, so I guess we go back to src/libFLA...
2004 Sep 10
2
1.0 candidate
...eving revision 1.5 diff -u -r1.5 Makefile.am --- src/libFLAC/ia32/Makefile.am 2001/07/16 18:04:19 1.5 +++ src/libFLAC/ia32/Makefile.am 2001/07/20 15:58:10 @@ -16,18 +16,16 @@ # Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Boston, MA 02111-1307, USA. -SUFFIXES = .nasm .lo - STRIP_FPIC = sh $(top_srcdir)/strip_fPIC.sh -.nasm.lo: - $(LIBTOOL) --tag=CC --mode=compile \ +%.lo: %.s + $(LIBTOOL) --mode=compile \ $(STRIP_FPIC) $(NASM) -f $(OBJ_FORMAT) -d OBJ_FORMAT_$(OBJ_FORMAT) $< #@@@OLD RULE: $(NASM) -f $(OBJ_FORMAT) -d OBJ_FORMAT_$(OBJ_FORMAT) $< -o $@ noinst_LTLIB...
2004 Sep 10
0
1.0 candidate checked in
...Josh Coalson wrote: > > > > > So, last chance to checkout from CVS and break it! > > > > Also, my libtool doesn't seem to recognize --tag=CC. What is its purpose? > > > > /bin/sh ../../../libtool --tag=CC --mode=compile \ > > sh ../../../strip_fPIC.sh nasm -f elf -d OBJ_FORMAT_elf cpu_asm.nasm > > libtool: unrecognized option `--tag=CC' > > Try `libtool --help' for more information. > > Once I removed that, it also seems to hate the .nasm extension: > > /bin/sh ../../../libtool --mode=compile \ > s...
2004 Sep 10
0
1.0 source candidate
...============================================================ RCS file: /cvsroot/flac/flac/src/libFLAC/ia32/Makefile.am,v retrieving revision 1.6 diff -u -r1.6 Makefile.am --- src/libFLAC/ia32/Makefile.am 2001/07/20 23:46:09 1.6 +++ src/libFLAC/ia32/Makefile.am 2001/07/21 01:58:17 @@ -21,7 +21,7 @@ STRIP_FPIC = sh $(top_srcdir)/strip_fPIC.sh .nasm.o: - $(NASM) -f $(OBJ_FORMAT) -d OBJ_FORMAT_$(OBJ_FORMAT) $< -o $@ + $(NASM) -f $(OBJ_FORMAT) -I $(srcdir)/ -d OBJ_FORMAT_$(OBJ_FORMAT) $< -o $@ # patch from Ben for the above rule that may be needed with new libtool: #.nasm.lo: @@ -32,4 +32,5 @@...
2004 Sep 10
5
1.0 source candidate
I rethought it and it seemed like a bad idea to post a big file, so you can get it here: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/flac/junk/flac-1.0-src-candidate.tar.bz2 Josh __________________________________________________ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://personal.mail.yahoo.com/
2004 Sep 10
1
FLAC 1.0.4 beta released
...) 1.4.2 (1.922.2.54 2001/09/11 03:33:37) > Running > libtoolize --force --copy corrects that problem, but then even > stranger > things happen: ... > `/home/mdz/data/src/deb/mine/work/flac/flac-1.0.4_beta/src/libFLAC/ia32' > /bin/sh ../../../libtool --mode=compile sh ../../../strip_fPIC.sh nasm > -f elf -d OBJ_FORMAT_elf -i./ cpu_asm.nasm -o cpu_asm.lo > ../../../libtool: line 1: s%^.*/%%: No such file or directory > ../../../libtool: line 1: -e: command not found > : warning: cannot infer operation mode from `sh' > : you must specify a MODE > Try ` --help...
2004 Sep 10
2
1.0 candidate checked in
> OK, that worked. > > I checked in your patch to make a static libFLAC-asm.a and > I moved @XMMS_LIBS@ to the end of ...LIBADD. Matt and Ben, > can you try the latest CVS to see if it works for you now? It doesn't work for me. Looks like libtool decided not to link libFLAC-asm.a into libFLAC. Here's the output: Making all in src gmake[1]: Entering directory
2004 Sep 10
2
1.0 candidate checked in
...19, 2001 at 02:56:11PM -0700, collver@linuxfreemail.com wrote: > On Thu, Jul 19, 2001 at 05:01:07PM -0400, Matt Zimmerman wrote: > > Once I removed that, it also seems to hate the .nasm extension: > > > > /bin/sh ../../../libtool --mode=compile \ > > sh ../../../strip_fPIC.sh nasm -f elf -d OBJ_FORMAT_elf cpu_asm.nasm > > libtool: compile: cannot determine name of library object from `cpu_asm.nasm' > > > > Is there some pressing reason to use libtool to compile these objects, rather > > than just executing nasm? I seem to recall there be...
2004 Sep 10
5
FLAC 1.0.4 beta released
All, I have just finished uploading the source release for FLAC 1.0.4 beta to Sourceforge; there are no binary releases. See the included doc/html/news.html for the changes since 1.0.3; there are quite a few. http://prdownloads.sourceforge.net/flac/flac-1.0.4_beta-src.tar.gz?download Please beat up on this as much as possible in the next week or two and try and turn up bugs. Here's a
2004 Sep 10
0
FLAC 1.0.4 beta released
...king check in libFLAC make[2]: Entering directory `/home/mdz/data/src/deb/mine/work/flac/flac-1.0.4_beta/src/libFLAC' Making check in ia32 make[3]: Entering directory `/home/mdz/data/src/deb/mine/work/flac/flac-1.0.4_beta/src/libFLAC/ia32' /bin/sh ../../../libtool --mode=compile sh ../../../strip_fPIC.sh nasm -f elf -d OBJ_FORMAT_elf -i./ cpu_asm.nasm -o cpu_asm.lo ../../../libtool: line 1: s%^.*/%%: No such file or directory ../../../libtool: line 1: -e: command not found : warning: cannot infer operation mode from `sh' : you must specify a MODE Try ` --help' for more information. make[...