diff options
author | Olivier Hainque <hainque@adacore.com> | 2017-06-08 14:08:56 +0000 |
---|---|---|
committer | Olivier Hainque <hainque@gcc.gnu.org> | 2017-06-08 14:08:56 +0000 |
commit | 1ac644c8d04230fd1be85de1b102a819c11c87bd (patch) | |
tree | a8e79182fb613a4b091f76f2e1ba31ff99155271 /libgcc/config | |
parent | 0036534fa36a1e3f62ddaffb3d6c2fa565511f17 (diff) | |
download | gcc-1ac644c8d04230fd1be85de1b102a819c11c87bd.zip gcc-1ac644c8d04230fd1be85de1b102a819c11c87bd.tar.gz gcc-1ac644c8d04230fd1be85de1b102a819c11c87bd.tar.bz2 |
t-vxworks (LIBGCC2_INCLUDES): Add path to wrn/coreip to the set of -I options...
2017-06-08 Olivier Hainque <hainque@adacore.com>
* config/t-vxworks (LIBGCC2_INCLUDES): Add path to wrn/coreip to
the set of -I options, support for direct inclusions of net/uio.h
by VxWorks header files via ioLib.h.
From-SVN: r249016
Diffstat (limited to 'libgcc/config')
-rw-r--r-- | libgcc/config/t-vxworks | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libgcc/config/t-vxworks b/libgcc/config/t-vxworks index 7c9bac9..d67e446 100644 --- a/libgcc/config/t-vxworks +++ b/libgcc/config/t-vxworks @@ -7,8 +7,8 @@ LIB2ADD = $(srcdir)/config/vxlib.c $(srcdir)/config/vxlib-tls.c # This ensures that the correct target headers are used; some # VxWorks system headers have names that collide with GCC's # internal (host) headers, e.g. regs.h. -LIBGCC2_INCLUDES = -nostdinc -I \ +LIBGCC2_INCLUDES = -nostdinc \ `case "/$(MULTIDIR)" in \ - */mrtp*) echo $(WIND_USR)/h ;; \ - *) echo $(WIND_BASE)/target/h ;; \ + */mrtp*) echo -I$(WIND_USR)/h -I$(WIND_USR)/h/wrn/coreip ;; \ + *) echo -I$(WIND_BASE)/target/h -I$(WIND_BASE)/target/h/wrn/coreip ;; \ esac` |