aboutsummaryrefslogtreecommitdiff
path: root/gcc/config/t-vxworks
blob: 40c6cc4185bee614d8798a2cf9d9def75b12b4a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# Copyright (C) 2002-2022 Free Software Foundation, Inc.
#
# This file is part of GCC.
#
# GCC is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3, or (at your option)
# any later version.
#
# GCC is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with GCC; see the file COPYING3.  If not see
# <http://www.gnu.org/licenses/>.

vxworks.o: $(srcdir)/config/vxworks.cc
	$(COMPILE) $<
	$(POSTCOMPILE)

vxworks-c.o: $(srcdir)/config/vxworks-c.cc
	$(COMPILE) $<
	$(POSTCOMPILE)

# We leverage $sysroot to find target system headers only, distributed
# in a VxWorks (a)typical fashion with a different set of headers for
# rtp vs kernel mode.  We setup SYSROOT_HEADERS_SUFFIX_SPEC to handle
# this, and need to clear NATIVE_SYSTEM_HEADER_DIR to prevent it from
# interfering.

NATIVE_SYSTEM_HEADER_DIR =

# Both the kernel and RTP headers provide limits.h.  They embed VxWorks
# specificities and are dated on some configurations so we both need to
# provide our own version and make sure the system one gets exposed.

LIMITS_H_TEST = true

# VxWorks system environments have been GCC based for a long time and
# we need to make sure that our files and the system ones use distinct
# macro names to protect against recursive inclusions.  We achieve
# this by modifying the GLIMITS_H fragment that goes into limits.h
# with some version indication in the inclusion-protection macro
# names.

T_GLIMITS_H = vxw-glimits.h

vxw-glimits.h: $(srcdir)/glimits.h
	ID=`echo $(BASEVER_c) | sed -e 's/\./_/g'` && \
	sed -e "s/_LIMITS_H__/_LIMITS_H__$${ID}_/" < $< > $@T
	mv $@T $@

# Arrange to "provide" a tailored version of stdint-gcc.h

T_STDINT_GCC_H = vxw-stdint-gcc.h

vxw-stdint-gcc.h: $(srcdir)/ginclude/stdint-gcc.h
	sed -e "/#define _GCC_STDINT_H/ a #include <_yvals.h>" < $< > $@T
	mv $@T $@