Enable the .note.netbsd section for hppa.

This commit is contained in:
skrll 2006-12-05 16:58:11 +00:00
parent f70b506cfb
commit 7e7373acc9
2 changed files with 10 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: ld.script,v 1.9 2006/08/25 06:49:16 skrll Exp $ */
/* $NetBSD: ld.script,v 1.10 2006/12/05 16:58:11 skrll Exp $ */
/* $OpenBSD: ld.script,v 1.7 1999/12/17 07:02:38 mickey Exp $ */
@ -61,4 +61,8 @@ SECTIONS
. = ALIGN(4096);
}
end = ABSOLUTE(.);
.note.netbsd.ident :
{
KEEP(*(.note.netbsd.ident));
}
}

View File

@ -1,6 +1,6 @@
#!/bin/sh -
#
# $NetBSD: newvers.sh,v 1.44 2006/12/05 16:15:53 martin Exp $
# $NetBSD: newvers.sh,v 1.45 2006/12/05 16:58:11 skrll Exp $
#
# Copyright (c) 1984, 1986, 1990, 1993
# The Regents of the University of California. All rights reserved.
@ -80,7 +80,10 @@ const char copyright[] =
${copyright}
"\n";
#if defined(__i386__) || defined(__sparc64__)
#if \
defined(__hppa__) || \
defined(__i386__) || \
defined(__sparc64__)
/*
* NetBSD identity note.
*/