aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Merrill <merrill@gnu.org>1995-03-13 23:11:08 +0000
committerJason Merrill <merrill@gnu.org>1995-03-13 23:11:08 +0000
commita9cd52eb9d9d565fe64b5dd84615e8888a02b18a (patch)
tree1466bab709024759488de1b036c3135f83571359
parent0f07e76ca786349628bea1bfd8ea15009aaaed0c (diff)
downloadgcc-a9cd52eb9d9d565fe64b5dd84615e8888a02b18a.zip
gcc-a9cd52eb9d9d565fe64b5dd84615e8888a02b18a.tar.gz
gcc-a9cd52eb9d9d565fe64b5dd84615e8888a02b18a.tar.bz2
Use -fPIC instead of -fpic
From-SVN: r9178
-rw-r--r--gcc/config/i386/t-crtpic6
-rw-r--r--gcc/config/i386/t-sol26
-rw-r--r--gcc/config/sparc/t-sol26
-rw-r--r--gcc/config/t-svr46
4 files changed, 12 insertions, 12 deletions
diff --git a/gcc/config/i386/t-crtpic b/gcc/config/i386/t-crtpic
index d8398e3..f5dd073 100644
--- a/gcc/config/i386/t-crtpic
+++ b/gcc/config/i386/t-crtpic
@@ -1,9 +1,9 @@
# 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
+# 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
+# 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
+CRTSTUFF_T_CFLAGS = -fPIC -fno-omit-frame-pointer
diff --git a/gcc/config/i386/t-sol2 b/gcc/config/i386/t-sol2
index eddad5d..f79f6ca 100644
--- a/gcc/config/i386/t-sol2
+++ b/gcc/config/i386/t-sol2
@@ -23,10 +23,10 @@ crtn.o: $(srcdir)/config/i386/sol2-cn.asm
sed -e '/^!/d' <$(srcdir)/config/i386/sol2-cn.asm >crtn.s
$(AS) -o crtn.o crtn.s
-# We need to use -fpic when we are using gcc to compile the routines in
+# 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
+# we will be doing that, we just always use -fPIC when compiling the
# routines in crtstuff.c.
-CRTSTUFF_T_CFLAGS = -fpic
+CRTSTUFF_T_CFLAGS = -fPIC
diff --git a/gcc/config/sparc/t-sol2 b/gcc/config/sparc/t-sol2
index cfc588f..ccafc00 100644
--- a/gcc/config/sparc/t-sol2
+++ b/gcc/config/sparc/t-sol2
@@ -17,14 +17,14 @@ crti.o: $(srcdir)/config/sparc/sol2-ci.asm
crtn.o: $(srcdir)/config/sparc/sol2-cn.asm
$(AS) -o crtn.o $(srcdir)/config/sparc/sol2-cn.asm
-# We need to use -fpic when we are using gcc to compile the routines in
+# 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
+# we will be doing that, we just always use -fPIC when compiling the
# routines in crtstuff.c.
# Since the GNU assembler doesn't support PIC yet, we need to force gcc to
# use the native assembler when building crtstuff. If we're a
# cross-compiler, just give up on using PIC.
-CRTSTUFF_T_CFLAGS = `if [ -z "$(CROSS)" ]; then echo -fpic -B/usr/ccs/bin/; fi`
+CRTSTUFF_T_CFLAGS = `if [ -z "$(CROSS)" ]; then echo -fPIC -B/usr/ccs/bin/; fi`
diff --git a/gcc/config/t-svr4 b/gcc/config/t-svr4
index 7b3a641..d4abf48 100644
--- a/gcc/config/t-svr4
+++ b/gcc/config/t-svr4
@@ -1,7 +1,7 @@
-# We need to use -fpic when we are using gcc to compile the routines in
+# 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
+# we will be doing that, we just always use -fPIC when compiling the
# routines in crtstuff.c.
-CRTSTUFF_T_CFLAGS = -fpic
+CRTSTUFF_T_CFLAGS = -fPIC