diff options
author | Richard Sandiford <richard@codesourcery.com> | 2007-03-02 12:38:32 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2007-03-02 12:38:32 +0000 |
commit | 1f24ba024dd4c59b30718e0e3e66f8481be7db29 (patch) | |
tree | 98c7447e61f7f2ca3f0eac5936a145432f97b9e5 | |
parent | c3c9a5d23e79fd998f42a0948ed7d73cb731121b (diff) | |
download | gcc-1f24ba024dd4c59b30718e0e3e66f8481be7db29.zip gcc-1f24ba024dd4c59b30718e0e3e66f8481be7db29.tar.gz gcc-1f24ba024dd4c59b30718e0e3e66f8481be7db29.tar.bz2 |
t-vxworks (LIMITS_H_TEST): Define to true for VxWorks.
gcc/
* config/t-vxworks (LIMITS_H_TEST): Define to true for VxWorks.
From-SVN: r122475
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/t-vxworks | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 688ffd6..74d80c4 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 2007-03-02 Richard Sandiford <richard@codesourcery.com> + * config/t-vxworks (LIMITS_H_TEST): Define to true for VxWorks. + +2007-03-02 Richard Sandiford <richard@codesourcery.com> + * config/t-vxworks (LIBGCC2_INCLUDES): Pass -nostdinc. Use $MULTIDIR to choose between the kernel and RTP headers, and use $WIND_BASE and $WIND_USR to locate them. diff --git a/gcc/config/t-vxworks b/gcc/config/t-vxworks index f623503..3741581 100644 --- a/gcc/config/t-vxworks +++ b/gcc/config/t-vxworks @@ -27,6 +27,9 @@ LIBGCC2_INCLUDES = -nostdinc -I \ *) echo $(WIND_BASE)/target/h ;; \ esac` +# Both the kernel and RTP headers provide limits.h. +LIMITS_H_TEST = true + EXTRA_MULTILIB_PARTS = vxworks.o: $(srcdir)/config/vxworks.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |