blob: fd1fbfd4f30b29646c23a7acad234016a8d82b60 [file] [log] [blame]
# Copyright (C) 2002-2020 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.c
$(COMPILE) $<
$(POSTCOMPILE)
vxworks-c.o: $(srcdir)/config/vxworks-c.c
$(COMPILE) $<
$(POSTCOMPILE)
# Arrange to install our stdint.h wrapper, by copying it in the
# build-time include dir before this include dir is installed and after
# stmp-int-hdrs removes it (because it was told we don't provide it).
INSTALL_HEADERS += install-stdint.h
install-stdint.h: stmp-int-hdrs
cp -p $(srcdir)/config/vxworks/stdint.h include/stdint.h
chmod a+r include/stdint.h
$(INSTALL_HEADERS_DIR): install-stdint.h
# 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
STMP_FIXINC = stmp-fixinc
# 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 temporarily
# substituting the headers used by stmp-int-headers with alternative versions
# where we add some version indication in the inclusion-protection macro
# names.
# Before the standard stmp-int-headers operations take place, arrange to
# copy the current version of the relevant header files locally, generate
# the alternate version and replace the original version with ours:
stmp-int-hdrs: subst-glimits.h
subst-%.h:
cp -p $(srcdir)/$*.h orig-$*.h
ID=$$(echo $(BASEVER_c) | sed -e 's/\./_/g'); \
sed -e "s/_LIMITS_H__/_LIMITS_H_$${ID}_/" < $(srcdir)/$*.h > $@
cp $@ $(srcdir)/$*.h
# Then arrange to restore the original versions after the standard
# operations have taken place:
INSTALL_HEADERS += restore-glimits.h
restore-glimits.h: stmp-int-hdrs
cp -p orig-glimits.h $(srcdir)/glimits.h