diff options
author | Jakub Jelinek <jakub@redhat.com> | 2002-01-25 12:22:52 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2002-01-25 12:22:52 +0100 |
commit | 72c7c913b4bfd72a05b6085b3477201f1cbcac9a (patch) | |
tree | d153023a61454f68b666d5a3672d567b9fb49ba8 /gcc/crtstuff.c | |
parent | 1658df0aca094554c924e14db411f6661794f404 (diff) | |
download | gcc-72c7c913b4bfd72a05b6085b3477201f1cbcac9a.zip gcc-72c7c913b4bfd72a05b6085b3477201f1cbcac9a.tar.gz gcc-72c7c913b4bfd72a05b6085b3477201f1cbcac9a.tar.bz2 |
unwind-dw2-fde-glibc.c: If inhibit_libc, use __register_frame* registry only.
* unwind-dw2-fde-glibc.c: If inhibit_libc, use __register_frame*
registry only.
* crtstuff.c: Likewise.
From-SVN: r49212
Diffstat (limited to 'gcc/crtstuff.c')
-rw-r--r-- | gcc/crtstuff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/crtstuff.c b/gcc/crtstuff.c index 8beb64c..4c6fc58 100644 --- a/gcc/crtstuff.c +++ b/gcc/crtstuff.c @@ -67,7 +67,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA #endif #if defined(OBJECT_FORMAT_ELF) && defined(HAVE_LD_EH_FRAME_HDR) \ - && !defined(CRTSTUFFT_O) \ + && !defined(inhibit_libc) && !defined(CRTSTUFFT_O) \ && defined(__GLIBC__) && __GLIBC__ >= 2 #include <link.h> # if (__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 2) \ |