aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.3.1/libgcc/config/rs6000
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.3.1/libgcc/config/rs6000')
-rw-r--r--gcc-4.3.1/libgcc/config/rs6000/t-darwin1
-rw-r--r--gcc-4.3.1/libgcc/config/rs6000/t-ldbl1283
-rw-r--r--gcc-4.3.1/libgcc/config/rs6000/t-ppccomm36
3 files changed, 40 insertions, 0 deletions
diff --git a/gcc-4.3.1/libgcc/config/rs6000/t-darwin b/gcc-4.3.1/libgcc/config/rs6000/t-darwin
new file mode 100644
index 000000000..0afe837b4
--- /dev/null
+++ b/gcc-4.3.1/libgcc/config/rs6000/t-darwin
@@ -0,0 +1 @@
+SHLIB_VERPFX = $(gcc_srcdir)/config/rs6000/darwin-libgcc
diff --git a/gcc-4.3.1/libgcc/config/rs6000/t-ldbl128 b/gcc-4.3.1/libgcc/config/rs6000/t-ldbl128
new file mode 100644
index 000000000..bdd62f3cd
--- /dev/null
+++ b/gcc-4.3.1/libgcc/config/rs6000/t-ldbl128
@@ -0,0 +1,3 @@
+SHLIB_MAPFILES += $(gcc_srcdir)/config/rs6000/libgcc-ppc-glibc.ver
+
+HOST_LIBGCC2_CFLAGS += -mlong-double-128
diff --git a/gcc-4.3.1/libgcc/config/rs6000/t-ppccomm b/gcc-4.3.1/libgcc/config/rs6000/t-ppccomm
new file mode 100644
index 000000000..d88368234
--- /dev/null
+++ b/gcc-4.3.1/libgcc/config/rs6000/t-ppccomm
@@ -0,0 +1,36 @@
+EXTRA_PARTS += ecrti$(objext) ecrtn$(objext) ncrti$(objext) ncrtn$(objext) \
+ crtsavres$(objext)
+
+# We build {e,n}crti.o and {e,n}crtn.o, which serve to add begin and
+# end labels to all of the special sections used when we link using gcc.
+
+# Assemble startup files.
+ecrti.S: $(gcc_srcdir)/config/rs6000/eabi-ci.asm
+ cat $(gcc_srcdir)/config/rs6000/eabi-ci.asm >ecrti.S
+
+ecrtn.S: $(gcc_srcdir)/config/rs6000/eabi-cn.asm
+ cat $(gcc_srcdir)/config/rs6000/eabi-cn.asm >ecrtn.S
+
+ncrti.S: $(gcc_srcdir)/config/rs6000/sol-ci.asm
+ cat $(gcc_srcdir)/config/rs6000/sol-ci.asm >ncrti.S
+
+ncrtn.S: $(gcc_srcdir)/config/rs6000/sol-cn.asm
+ cat $(gcc_srcdir)/config/rs6000/sol-cn.asm >ncrtn.S
+
+crtsavres.S: $(gcc_srcdir)/config/rs6000/crtsavres.asm
+ cat $(gcc_srcdir)/config/rs6000/crtsavres.asm >crtsavres.S
+
+ecrti$(objext): ecrti.S
+ $(crt_compile) -c ecrti.S
+
+ecrtn$(objext): ecrtn.S
+ $(crt_compile) -c ecrtn.S
+
+ncrti$(objext): ncrti.S
+ $(crt_compile) -c ncrti.S
+
+ncrtn$(objext): ncrtn.S
+ $(crt_compile) -c ncrtn.S
+
+crtsavres$(objext): crtsavres.S
+ $(crt_compile) -c crtsavres.S