diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1996-06-28 16:24:19 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1996-06-28 16:24:19 -0400 |
commit | d1d7df4c04d9054dc6eceb5d295f0ce132250630 (patch) | |
tree | 3b080ae28bc2e19e987180896a37fae3da314c81 /gcc/config/t-linux | |
parent | 2a64bb2f0d854d692c0f6cf8e76e16c014a046b1 (diff) | |
download | gcc-d1d7df4c04d9054dc6eceb5d295f0ce132250630.zip gcc-d1d7df4c04d9054dc6eceb5d295f0ce132250630.tar.gz gcc-d1d7df4c04d9054dc6eceb5d295f0ce132250630.tar.bz2 |
(BOOT_CFLAGS): Removed, no longer necessary.
(CRTSTUFF_T_CFLAGS): Don't define.
(CRTSTUFF_T_CFLAGS_S): Define this instead.
From-SVN: r12368
Diffstat (limited to 'gcc/config/t-linux')
-rw-r--r-- | gcc/config/t-linux | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/gcc/config/t-linux b/gcc/config/t-linux index 0aadae4..843fa1b 100644 --- a/gcc/config/t-linux +++ b/gcc/config/t-linux @@ -1,20 +1,10 @@ -# The following is needed when compiling stages 2 and 3 because gcc's -# limits.h must be picked up before /usr/include/limits.h. This is -# because each does an #include_next of the other if the other hasn't -# been included. /usr/include/limits.h loses if it gets found first -# because /usr/include is at the end of the search order. When a -# new version of gcc is released, gcc's limits.h hasn't been installed -# yet and hence isn't found. -BOOT_CFLAGS = -O $(CFLAGS) -Iinclude - # Don't run fixproto STMP_FIXPROTO = # Don't install "assert.h" in gcc. We use the one in glibc. INSTALL_ASSERT_H = -# Linux uses crtbeginS.o and crtendS.o. Don't compile -# crtbegin.o and crtend.o with -fPIC. -CRTSTUFF_T_CFLAGS=-fomit-frame-pointer -finhibit-size-directive \ - -fno-inline-functions +# Compile crtbeginS.o and crtendS.o with pic. +CRTSTUFF_T_CFLAGS_S = -fPIC +# Compile libgcc2.a with pic. TARGET_LIBGCC2_CFLAGS = -fPIC |