aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorOlivier Hainque <hainque@adacore.com>2006-12-12 11:09:53 +0000
committerOlivier Hainque <hainque@gcc.gnu.org>2006-12-12 11:09:53 +0000
commit527a08917e8c4310c129c42649991f51b2f5c1a9 (patch)
tree38385bddf85a52a9aa4cf4ec09ebc3799d58635c /gcc
parentc0da9742e547dc0c83a1056062fe1deb8177971b (diff)
downloadgcc-527a08917e8c4310c129c42649991f51b2f5c1a9.zip
gcc-527a08917e8c4310c129c42649991f51b2f5c1a9.tar.gz
gcc-527a08917e8c4310c129c42649991f51b2f5c1a9.tar.bz2
t-vxworks: Remove assignment to LIB2FUNCS_EXTRA.
* config/rs6000/t-vxworks: Remove assignment to LIB2FUNCS_EXTRA. From-SVN: r119773
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/config/rs6000/t-vxworks9
2 files changed, 11 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 6c7c1d0..406b52b 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,9 @@
2006-12-12 Olivier Hainque <hainque@adacore.com>
+ * config/rs6000/t-vxworks: Remove assignment to LIB2FUNCS_EXTRA.
+
+2006-12-12 Olivier Hainque <hainque@adacore.com>
+
* config/vxlib.c: Extract tls related routines into ...
* config/vxlib-tls.c: New file.
* config/t-vxworks: Add vxlib-tls.c to LIB2FUNCS_EXTRA.
diff --git a/gcc/config/rs6000/t-vxworks b/gcc/config/rs6000/t-vxworks
index fe65a39..f042b77 100644
--- a/gcc/config/rs6000/t-vxworks
+++ b/gcc/config/rs6000/t-vxworks
@@ -6,6 +6,11 @@ MULTILIB_DIRNAMES =
MULTILIB_MATCHES = fPIC=fpic
MULTILIB_EXCEPTIONS = fPIC*
-# Restore some variables from t-vxworks clobbered by t-ppccomm.
+# This is set from the common config/t-vxworks but clobbered by t-ppccomm
+# on this target.
EXTRA_MULTILIB_PARTS =
-LIB2FUNCS_EXTRA = $(srcdir)/config/vxlib.c
+
+# Similarily, LIB2FUNCS_EXTRA is set from config/t-vxworks and
+# t-ppccomm *adds* to it, but the common contents are useful to us.
+# In particular the base trampoline_setup bits are expected to be
+# provided there.