From aa3b269dde6422e3098179c58b5e463515f45cb6 Mon Sep 17 00:00:00 2001 From: "\"Steven J. Hill\"" Date: Tue, 15 Oct 2002 21:27:49 +0000 Subject: Fixed 'dlopen' call for MIPS. Things seem to work swimingly. Woohoo! --- ldso/libdl/dlib.c | 9 +++++++++ ldso/libdl/libdl.c | 9 +++++++++ 2 files changed, 18 insertions(+) (limited to 'ldso') diff --git a/ldso/libdl/dlib.c b/ldso/libdl/dlib.c index b8f7d9128..563183662 100644 --- a/ldso/libdl/dlib.c +++ b/ldso/libdl/dlib.c @@ -196,6 +196,13 @@ void *_dlopen(const char *libname, int flag) rpnt->next = _dl_symbol_tables; + /* + * MIPS is special *sigh* + */ +#ifdef __mips__ + _dl_perform_mips_global_got_relocations(tpnt); +#endif + if (do_fixup(tpnt, flag)) { _dl_error_number = LD_NO_SYMBOL; goto oops; @@ -215,6 +222,8 @@ void *_dlopen(const char *libname, int flag) /* Apparently crt1 for the application is responsible for handling this. * We only need to run the init/fini for shared libraries */ + if (tpnt->libtype == program_interpreter) + continue; if (tpnt->libtype == elf_executable) continue; if (tpnt->init_flag & INIT_FUNCS_CALLED) diff --git a/ldso/libdl/libdl.c b/ldso/libdl/libdl.c index b8f7d9128..563183662 100644 --- a/ldso/libdl/libdl.c +++ b/ldso/libdl/libdl.c @@ -196,6 +196,13 @@ void *_dlopen(const char *libname, int flag) rpnt->next = _dl_symbol_tables; + /* + * MIPS is special *sigh* + */ +#ifdef __mips__ + _dl_perform_mips_global_got_relocations(tpnt); +#endif + if (do_fixup(tpnt, flag)) { _dl_error_number = LD_NO_SYMBOL; goto oops; @@ -215,6 +222,8 @@ void *_dlopen(const char *libname, int flag) /* Apparently crt1 for the application is responsible for handling this. * We only need to run the init/fini for shared libraries */ + if (tpnt->libtype == program_interpreter) + continue; if (tpnt->libtype == elf_executable) continue; if (tpnt->init_flag & INIT_FUNCS_CALLED) -- cgit v1.2.3