Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/lib/csu/common Allow building with the changed weakref seman...
details: https://anonhg.NetBSD.org/src/rev/163a91d58228
branches: trunk
changeset: 762300:163a91d58228
user: joerg <joerg%NetBSD.org@localhost>
date: Fri Feb 18 23:37:36 2011 +0000
description:
Allow building with the changed weakref semantic in GCC 4.2 and clang.
diffstat:
lib/csu/common/crt0-common.c | 13 ++++++++++---
1 files changed, 10 insertions(+), 3 deletions(-)
diffs (42 lines):
diff -r 479a33c83bd0 -r 163a91d58228 lib/csu/common/crt0-common.c
--- a/lib/csu/common/crt0-common.c Fri Feb 18 22:54:27 2011 +0000
+++ b/lib/csu/common/crt0-common.c Fri Feb 18 23:37:36 2011 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: crt0-common.c,v 1.2 2011/02/08 02:03:13 matt Exp $ */
+/* $NetBSD: crt0-common.c,v 1.3 2011/02/18 23:37:36 joerg Exp $ */
/*
* Copyright (c) 1998 Christos Zoulas
@@ -36,7 +36,7 @@
*/
#include <sys/cdefs.h>
-__RCSID("$NetBSD: crt0-common.c,v 1.2 2011/02/08 02:03:13 matt Exp $");
+__RCSID("$NetBSD: crt0-common.c,v 1.3 2011/02/18 23:37:36 joerg Exp $");
#include <sys/types.h>
#include <sys/syscall.h>
@@ -57,7 +57,14 @@
* if we happen to be compiling without -static but with without any
* shared libs present, things will still work.
*/
+
+#if __GNUC_PREREQ__(4,2)
+static int rtld_DYNAMIC __attribute__((__weakref__, __alias__("_DYNAMIC")));
+#define DYNAMIC_SYM rtld_DYNAMIC
+#else
extern int _DYNAMIC __weak_reference(_DYNAMIC);
+#define DYNAMIC_SYM _DYNAMIC
+#endif
#ifdef MCRT0
extern void monstartup(u_long, u_long);
@@ -104,7 +111,7 @@
if (ps_strings != NULL)
__ps_strings = ps_strings;
- if (&_DYNAMIC != NULL) {
+ if (&DYNAMIC_SYM != NULL) {
if (obj == NULL)
_FATAL("NULL Obj_Entry pointer in GOT\n");
if (obj->magic != RTLD_MAGIC)
Home |
Main Index |
Thread Index |
Old Index