Author: andrew Date: Wed Mar 18 13:54:53 2015 New Revision: 280219 URL: https://svnweb.freebsd.org/changeset/base/280219
Log: We won't support a.out on arm64/aarch64. As such there will be no need to support it in nlist(3). Reviewed by: emaste Sponsored by: The FreeBSD Foundation Modified: head/lib/libc/gen/nlist.c Modified: head/lib/libc/gen/nlist.c ============================================================================== --- head/lib/libc/gen/nlist.c Wed Mar 18 13:07:19 2015 (r280218) +++ head/lib/libc/gen/nlist.c Wed Mar 18 13:54:53 2015 (r280219) @@ -47,7 +47,10 @@ __FBSDID("$FreeBSD$"); #include <unistd.h> #include "un-namespace.h" +/* There is no a.out support on arm64 */ +#ifndef __aarch64__ #define _NLIST_DO_AOUT +#endif #define _NLIST_DO_ELF #ifdef _NLIST_DO_ELF _______________________________________________ svn-src-head@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"