mirror of
git://sourceware.org/git/glibc.git
synced 2025-01-18 12:16:13 +08:00
Use SHARED instead of PIC.
This commit is contained in:
parent
0772663d31
commit
73a35fc451
@ -39,7 +39,7 @@ init (int *data)
|
||||
__getopt_clean_environment (envp);
|
||||
}
|
||||
|
||||
#ifdef PIC
|
||||
#ifdef SHARED
|
||||
/* This function is called to initialize the shared C library.
|
||||
It is called just before the user _start code from i386/elf/start.S,
|
||||
with the stack set up as that code gets it. */
|
||||
@ -63,7 +63,7 @@ _init (int argc, ...)
|
||||
void
|
||||
__libc_init_first (int argc __attribute__ ((unused)), ...)
|
||||
{
|
||||
#ifndef PIC
|
||||
#ifndef SHARED
|
||||
init (&argc);
|
||||
#endif
|
||||
}
|
||||
|
@ -34,7 +34,7 @@ init (int *data)
|
||||
__libc_init (argc, argv, envp);
|
||||
}
|
||||
|
||||
#ifdef PIC
|
||||
#ifdef SHARED
|
||||
/* This function is called to initialize the shared C library.
|
||||
It is called just before the user _start code from mips/elf/start.S,
|
||||
with the stack set up as that code gets it. */
|
||||
@ -58,7 +58,7 @@ _init (int argc, ...)
|
||||
void
|
||||
__libc_init_first (int argc __attribute__ ((unused)), ...)
|
||||
{
|
||||
#ifndef PIC
|
||||
#ifndef SHARED
|
||||
init (&argc);
|
||||
#endif
|
||||
}
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* Machine-specific calling sequence for `mcount' profiling function. MIPS
|
||||
Copyright (C) 1996, 1997 Free Software Foundation, Inc.
|
||||
Copyright (C) 1996, 1997, 2000 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
|
||||
@ -21,7 +21,7 @@
|
||||
|
||||
/* Call __mcount with our the return PC for our caller,
|
||||
and the return PC our caller will return to. */
|
||||
#ifdef PIC
|
||||
#ifdef __PIC__
|
||||
#define CPLOAD ".cpload $25;"
|
||||
#else
|
||||
#define CPLOAD
|
||||
|
Loading…
Reference in New Issue
Block a user