freebsd-dev/usr.bin/elf2aout
Bruce Evans 729cce8403 Set NO_WERROR to ignore the following warning which is emitted on
alphas:
    .../elf2aout.c:130: warning: cast increases required alignment of
    target type
The warning is about casting ((char *)e + phoff) to a struct pointer,
where e is aligned but phoff might be garbage, so I think the warning
should be emitted on most machines (even on i386's, alignment checking
might be on) and the correct fix would involve validation phoff before
using it.
2002-07-11 18:06:09 +00:00
..
elf2aout.c Make it work for a different endianness binary. 2002-05-25 13:43:16 +00:00
Makefile Set NO_WERROR to ignore the following warning which is emitted on 2002-07-11 18:06:09 +00:00