OSDN Git Service

Hopefully correct undefined __libc_stack_end issue
authorPeter S. Mazinger <ps.m@gmx.net>
Sat, 29 Oct 2005 10:18:42 +0000 (10:18 -0000)
committerPeter S. Mazinger <ps.m@gmx.net>
Sat, 29 Oct 2005 10:18:42 +0000 (10:18 -0000)
libc/misc/internals/Makefile.in
libc/misc/internals/__uClibc_main.c
libc/misc/internals/static.c [deleted file]

index a9dc263..c6be32a 100644 (file)
@@ -16,7 +16,7 @@ MISC_INTERNALS_OUT:=$(top_builddir)libc/misc/internals
 MISC_INTERNALS_SRC:=$(patsubst %.c,$(MISC_INTERNALS_DIR)/%.c,$(CSRC))
 MISC_INTERNALS_OBJ:=$(patsubst %.c,$(MISC_INTERNALS_OUT)/%.o,$(CSRC))
 
-STATIC_SRC:=__uClibc_main.c static.c
+STATIC_SRC:=__uClibc_main.c
 
 $(MISC_INTERNALS_OUT)/interp.c: $(MISC_INTERNALS_DIR)/Makefile.in
        echo "/* Force shared libraries to know about the correct library loader */" > $@
index e7c2c4a..42f971f 100644 (file)
 #include <fcntl.h>
 #include <sys/stat.h>
 #include <sys/sysmacros.h>
+
 #ifndef SHARED
+void *__libc_stack_end=NULL;
+
 /* probably all the weak_*function stuff below should be in here */
+
 #ifdef __UCLIBC_HAS_SSP__
 #include <dl-osinfo.h>
 #ifndef THREAD_SET_STACK_GUARD
@@ -39,12 +43,12 @@ uintptr_t __stack_chk_guard attribute_relro;
 strong_alias(__stack_chk_guard,__guard)
 #endif
 #endif
-#endif
+
+#endif /* !SHARED */
 
 /*
  * Prototypes.
  */
-extern void *__libc_stack_end;
 extern void weak_function _stdio_init(void);
 extern int *weak_const_function __errno_location(void);
 extern int *weak_const_function __h_errno_location(void);
@@ -191,7 +195,10 @@ __uClibc_main(int (*main)(int, char **, char **), int argc,
     unsigned long *aux_dat;
     ElfW(auxv_t) auxvt[AT_EGID + 1];
 #endif
+
+#ifndef SHARED
     __libc_stack_end = stack_end;
+#endif
 
     __rtld_fini = rtld_fini;
 
diff --git a/libc/misc/internals/static.c b/libc/misc/internals/static.c
deleted file mode 100644 (file)
index cd39ffd..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-#include <stddef.h>
-
-/* Force static libraries to know about ... */
-void *__libc_stack_end=NULL;