diff options
author | Roland McGrath <roland@gcc.gnu.org> | 1996-01-15 21:20:17 +0000 |
---|---|---|
committer | Roland McGrath <roland@gcc.gnu.org> | 1996-01-15 21:20:17 +0000 |
commit | 968ad7cfe21dc8a7b57fe5f23a95dd7fb2ee582a (patch) | |
tree | 7e3d89fb7ef0a70c791b1bf7d6e61307cd3b9b7a | |
parent | d09699ddcf385dd0ea0e3eea3e89260bbc096808 (diff) | |
download | gcc-968ad7cfe21dc8a7b57fe5f23a95dd7fb2ee582a.zip gcc-968ad7cfe21dc8a7b57fe5f23a95dd7fb2ee582a.tar.gz gcc-968ad7cfe21dc8a7b57fe5f23a95dd7fb2ee582a.tar.bz2 |
Initial revision
From-SVN: r10996
-rw-r--r-- | gcc/config/t-gnu | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gcc/config/t-gnu b/gcc/config/t-gnu new file mode 100644 index 0000000..58969f2 --- /dev/null +++ b/gcc/config/t-gnu @@ -0,0 +1,13 @@ +LIBGCC1=libgcc1.null +CROSS_LIBGCC1=libgcc1.null + +# The pushl in CTOR initialization interferes with frame pointer elimination. + +# We need to use -fPIC when we are using gcc to compile the routines in +# crtstuff.c. This is only really needed when we are going to use gcc/g++ +# to produce a shared library, but since we don't know ahead of time when +# we will be doing that, we just always use -fPIC when compiling the +# routines in crtstuff.c. + +CRTSTUFF_T_CFLAGS = -fPIC -fno-omit-frame-pointer +TARGET_LIBGCC2_CFLAGS = -fPIC |