summaryrefslogtreecommitdiff
path: root/ACE/include
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2022-07-01 11:39:52 +0200
committerJohnny Willemsen <jwillemsen@remedy.nl>2022-07-01 11:39:52 +0200
commit1fd113b0e0210221ea0be7f49b80d99f1ba3a2e1 (patch)
treed4401dda23886bf989705ff1583137a930f1f598 /ACE/include
parent0ed5e6bcf74f4dc8feaac94da2aaea640fb066d4 (diff)
downloadATCD-1fd113b0e0210221ea0be7f49b80d99f1ba3a2e1.tar.gz
ctdt is a c file, so compile as c file, not c++
Diffstat (limited to 'ACE/include')
-rw-r--r--ACE/include/makeinclude/platform_vxworks7.0.GNU3
1 files changed, 1 insertions, 2 deletions
diff --git a/ACE/include/makeinclude/platform_vxworks7.0.GNU b/ACE/include/makeinclude/platform_vxworks7.0.GNU
index 6ab9dd59abd..4ca47346ccf 100644
--- a/ACE/include/makeinclude/platform_vxworks7.0.GNU
+++ b/ACE/include/makeinclude/platform_vxworks7.0.GNU
@@ -22,7 +22,6 @@
# Not all configurations supported on VxWorks 6.x have been brought forward
# to this file. If you are building a configuration that has not yet been
# attempted on VxWorks 7, this file may need to be changed.
-
VXWORKS = 1
CROSS-COMPILE = 1
@@ -88,7 +87,7 @@ ifeq ($(rtp),0)
define LINK.cc.override
$(LD) -r -nostdlib $(LDFLAGS) -o $(call IFILE,$@)_partial.o $(filter %.o,$^) $(DKM_LIBS)
$(NM) $(call IFILE,$@)_partial.o | $(MUNCH) > $(call IFILE,$@)_ctdt.c
- $(COMPILE.cc) -o $(call IFILE,$@)_ctdt.o $(call IFILE,$@)_ctdt.c
+ $(COMPILE.c) -o $(call IFILE,$@)_ctdt.o $(call IFILE,$@)_ctdt.c
$(LD) -r -nostdlib -X $(LD_SCRIPT_DOWNLOAD) -o $@ $(call IFILE,$@)_ctdt.o $(call IFILE,$@)_partial.o $(DKM_FINAL_LIBS)
endef