Define __dso_handle if not ELF but shared.
This commit is contained in:
parent
ed556c3c99
commit
b9823d7f91
@ -1,4 +1,4 @@
|
||||
/* Copyright (C) 1991, 93, 1995-1998, 2000 Free Software Foundation, Inc.
|
||||
/* Copyright (C) 1991, 93, 1995-1998, 2000, 2001 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
@ -32,6 +32,12 @@ typedef unsigned char uchar; /* sb in libc/posix/types.h */
|
||||
/* The first piece of initialized data. */
|
||||
int __data_start = 0;
|
||||
|
||||
+#ifndef HAVE_ELF
|
||||
/* Since gcc/crtstuff.c won't define it unless the ELF format is used
|
||||
we will need to define it here. */
|
||||
void *__dso_handle = NULL;
|
||||
#endif
|
||||
|
||||
extern int errno;
|
||||
|
||||
/* extern __pthread_init; */
|
||||
@ -287,4 +293,3 @@ __RTINIT *find_rtinit(caddr_t text_origin, caddr_t data_origin, int module_count
|
||||
(data_origin - data_sec_hdr->s_vaddr));
|
||||
return(rtl);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user