Displaying 4 results from an estimated 4 matches for "obj_format_aout".
2012 Feb 26
0
Testing needed
...d 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 recognized
...
Wrapping the section wit...
2004 Sep 10
2
object format detection
Last night I checked in code to enable changing the object
file format passed to nasm. But I don't have many examples
to draw from so if anyone could submit patches against
configure.in for any of nasm's supported formats I'll put
them in. Right now the relevant snippet just looks like:
AC_CANONICAL_HOST
case "$host" in
*) OBJ_FORMAT=elf ;;
esac
Any patterns for
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
2013 Aug 03
1
nasm.h issues (sf.net bug #400)
...ally harmless (just annoying.)
I suggest that .note.GNU-stack be limited to elf targets, like:
diff --git a/src/libFLAC/ia32/nasm.h b/src/libFLAC/ia32/nasm.h
index abd01c4..0ae887c 100644
--- a/src/libFLAC/ia32/nasm.h
+++ b/src/libFLAC/ia32/nasm.h
@@ -79,7 +79,7 @@ _%1:
%1:
%endmacro
-%ifndef OBJ_FORMAT_aout
+%ifdef OBJ_FORMAT_elf
section .note.GNU-stack progbits noalloc noexec nowrite align=1
%endif
And the thing is worse with OSX/x86 builds. Tried a linux-hosted cross-
compile, got the following:
nasm.h:83: panic: invalid section name .note.GNU-stack
make[4]: *** [bitreader_asm.lo] Error 1
Afte...