Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 18 Mar 2015 13:54:54 +0000 (UTC)
From:      Andrew Turner <andrew@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r280219 - head/lib/libc/gen
Message-ID:  <201503181354.t2IDssGG085551@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201503181354.t2IDssGG085551>