search for: strip_non_asm_libtool_args

Displaying 7 results from an estimated 7 matches for "strip_non_asm_libtool_args".

2015 Feb 22
2
make fullcheck fails
fullcheck target was removed from test/Makefile.am, but not from <root>/Makefile.am. So `make fullcheck' fails with the following message: ... *** No rule to make target `fullcheck'. Stop. ...
2015 Feb 23
1
make fullcheck fails
...; target. My point was that Makefile.am in the root folder still have fullcheck target. So it make sense either to remove it from this file: diff --git a/Makefile.am b/Makefile.am index ba09d1d..4b81e6e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -47,7 +47,4 @@ EXTRA_DIST = \ ltmain.sh \ strip_non_asm_libtool_args.sh -fullcheck: - (cd test && make fullcheck) - CLEANFILES = *~ ...or to keep it for compatibility but change its definition: diff --git a/Makefile.am b/Makefile.am index ba09d1d..6319891 100644 --- a/Makefile.am +++ b/Makefile.am @@ -48,6 +48,6 @@ EXTRA_DIST = \ strip_non_asm_libt...
2004 Nov 14
1
Compile error: 1.1.1 on Debian 3.0r3
I'm compiling FLAC 1.1.1 on Debian 3.0r3 with GCC 3.0 and nasm 0.98.28 on an AMD K6. # make [...] /bin/sh ../../../libtool --tag=CC --mode=compile sh ../../../strip_non_asm_libtool_args.sh nasm -f elf -d OBJ_FORMAT_elf -i./ lpc_asm.nasm -o lpc_asm.lo sh ../../../strip_non_asm_libtool_args.sh nasm -f elf -d OBJ_FORMAT_elf -i./ lpc_asm.nasm -fPIC -o .libs/lpc_asm.o nasm -f elf -d OBJ_FORMAT_elf -i./ lpc_asm.nasm -o .libs/lpc_asm.o lpc_asm.nasm:679: error: operation size not spe...
2006 Jul 27
1
[PATCH] nasm cleanup
....2.orig/src/libFLAC/ia32/Makefile.am flac-1.1.2/src/libFLAC/ia32/Makefile.am --- flac-1.1.2.orig/src/libFLAC/ia32/Makefile.am Tue Jan 25 05:14:14 2005 +++ flac-1.1.2/src/libFLAC/ia32/Makefile.am Thu Jul 27 04:53:34 2006 @@ -30,10 +30,15 @@ SUFFIXES = .nasm .lo -STRIP_NON_ASM = sh $(top_srcdir)/strip_non_asm_libtool_args.sh - .nasm.lo: - $(LIBTOOL) --tag=CC --mode=compile $(STRIP_NON_ASM) $(NASM) -f $(OBJ_FORMAT) -d OBJ_FORMAT_$(OBJ_FORMAT) -i$(srcdir)/ $< -o $@ + mkdir -p .libs + echo "# $@ - a libtool object file" > $@ + echo "# Generated by ltmain.sh - libtool fake" >> $@ + echo...
2012 Feb 26
0
Testing needed
...on x86, x86_64 and PowerPC > Linux and would appreciate reports of successful compiles (and even > more importantly any failures) on OSX, Windows and elsewhere. Hi, build dies here on OS/2 as aout is a very simple object format and doesn't support most types of .section. ... sh ../../../strip_non_asm_libtool_args.sh nasm -f aout -d OBJ_FORMAT_aout -i./ bitreader_asm.nasm -DDLL_EXPORT -DPIC -o .libs/bitreader_asm.o nasm -f aout -d OBJ_FORMAT_aout -i./ bitreader_asm.nasm -DDLL_EXPORT -o .libs/bitreader_asm.o nasm.h:77: error: segment name `.note.GNU-stack progbits noalloc noexec nowrite align=1' not reco...
2012 Feb 26
5
Testing needed
Hi all, I think we're getting close to the first FLAC release in over 4 years. I have tested whats currently in Git on x86, x86_64 and PowerPC Linux and would appreciate reports of successful compiles (and even more importantly any failures) on OSX, Windows and elsewhere. Cheers, Erik -- ---------------------------------------------------------------------- Erik de Castro Lopo
2012 Apr 07
1
[PATCH 2/2] Update and improve autotools build
...C__byte vals[], unsigned nvals) { unsigned i; diff --git a/src/libFLAC/ia32/Makefile.am b/src/libFLAC/ia32/Makefile.am index 2e85f75..f3ff943 100644 --- a/src/libFLAC/ia32/Makefile.am +++ b/src/libFLAC/ia32/Makefile.am @@ -31,7 +31,7 @@ SUFFIXES = .nasm .lo STRIP_NON_ASM = sh $(top_srcdir)/strip_non_asm_libtool_args.sh - +AM_CPPFLAGS = -I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include .nasm.lo: $(LIBTOOL) --tag=CC --mode=compile $(STRIP_NON_ASM) $(NASM) -f $(OBJ_FORMAT) -d OBJ_FORMAT_$(OBJ_FORMAT) -i$(srcdir)/ $< -o $@ diff --git a/src/libFLAC/include/private/macros.h b/src/libFLAC/include/...