aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Sherrill <joel@OARcorp.com>2003-01-29 14:54:09 +0000
committerJoel Sherrill <joel@gcc.gnu.org>2003-01-29 14:54:09 +0000
commit64abe03e3db7a0ad3ee421d0aadb63a1b1179955 (patch)
tree762dd7ea7d023a57caa0d3128864365230d6584e
parent710b73e6f775809e5aeb26ede61ce8af61edc45a (diff)
downloadgcc-64abe03e3db7a0ad3ee421d0aadb63a1b1179955.zip
gcc-64abe03e3db7a0ad3ee421d0aadb63a1b1179955.tar.gz
gcc-64abe03e3db7a0ad3ee421d0aadb63a1b1179955.tar.bz2
re PR bootstrap/9292 (hppa1.1-rtems configurery problems)
2003-01-29 Joel Sherrill <joel@OARcorp.com> * config.gcc (hppa1.1-rtems): Did not include t-rtems nor enable RTEMS threads. * config/pa/rtems.h (LIB_SPEC): Use -N when linking. This issue was tracked as PR9292. From-SVN: r62078
-rw-r--r--gcc/ChangeLog7
-rw-r--r--gcc/config.gcc5
-rw-r--r--gcc/config/pa/rtems.h5
3 files changed, 15 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 9a1d6cf..63274de 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,10 @@
+2003-01-29 Joel Sherrill <joel@OARcorp.com>
+
+ * config.gcc (hppa1.1-rtems): Did not include t-rtems nor enable
+ RTEMS threads.
+ * config/pa/rtems.h (LIB_SPEC): Use -N when linking.
+ This issue was tracked as PR9292.
+
2003-01-29 Nick Clifton <nickc@redhat.com>
* Makefile.in (c-parse.o): Locate source file in $(parsedir)
diff --git a/gcc/config.gcc b/gcc/config.gcc
index f839ba9..a5a1fce 100644
--- a/gcc/config.gcc
+++ b/gcc/config.gcc
@@ -806,8 +806,11 @@ hppa1.1-*-rtems*)
xm_defines=POSIX
target_cpu_default="(MASK_JUMP_IN_DELAY | MASK_PORTABLE_RUNTIME | MASK_GAS | MASK_NO_SPACE_REGS | MASK_SOFT_FLOAT)"
tm_file="${tm_file} pa/pa32-regs.h dbxelf.h elfos.h pa/elf.h pa/pa-pro-end.h libgloss.h pa/rtems.h rtems.h"
- tmake_file="pa/t-bsd pa/t-pro"
+ tmake_file="pa/t-bsd pa/t-pro t-rtems"
xmake_file="pa/x-ada"
+ if test x$enable_threads = xyes; then
+ thread_file='rtems'
+ fi
;;
hppa1.0-*-osf*)
tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-osf.h"
diff --git a/gcc/config/pa/rtems.h b/gcc/config/pa/rtems.h
index b03b5c8..c71ac6e 100644
--- a/gcc/config/pa/rtems.h
+++ b/gcc/config/pa/rtems.h
@@ -1,5 +1,5 @@
/* Definitions of target machine for GNU compiler, for PRO.
- Copyright (C) 1997, 2000, 2002 Free Software Foundation, Inc.
+ Copyright (C) 1997, 2000, 2002, 2003 Free Software Foundation, Inc.
Contributed by Joel Sherrill (joel@OARcorp.com).
This file is part of GNU CC.
@@ -35,3 +35,6 @@ Boston, MA 02111-1307, USA. */
builtin_assert ("system=rtems"); \
} \
while (0)
+
+#undef LIB_SPEC
+#define LIB_SPEC "%{!p:%{!pg:-lc}}%{p: -lc}%{pg: -lc} -N"