svn commit: r280219 - head/lib/libc/gen

Andrew Turner andrew at FreeBSD.org
Wed Mar 18 13:54:54 UTC 2015


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


More information about the svn-src-all mailing list