summaryrefslogtreecommitdiffstats
path: root/make/custom/Linux-posix.cfg
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-07-24 15:46:01 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-07-24 15:46:01 +0000
commit59aea5d59244ad757e822dff4af958b944e1f5d3 (patch)
tree8937c5f09fae82c43e92f4c7e16506ea533353a0 /make/custom/Linux-posix.cfg
parent2007-07-24 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-59aea5d59244ad757e822dff4af958b944e1f5d3.tar.bz2
2007-07-24 Joel Sherrill <joel.sherrill@OARcorp.com>
* custom/Linux-posix.cfg: Linux BSP must be linked with C++ compiler.
Diffstat (limited to '')
-rw-r--r--make/custom/Linux-posix.cfg2
1 files changed, 1 insertions, 1 deletions
diff --git a/make/custom/Linux-posix.cfg b/make/custom/Linux-posix.cfg
index 7356c3e60a..4a11024832 100644
--- a/make/custom/Linux-posix.cfg
+++ b/make/custom/Linux-posix.cfg
@@ -22,7 +22,7 @@ CPU_CFLAGS = -D_BSD_SOURCE -D_POSIX_C_SOURCE
CFLAGS_OPTIMIZE_V = -O0 -g
define make-exe
- $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $@ $(LINK_OBJS) $(LINK_LIBS)
+ $(LINK.cc) $(AM_CFLAGS) $(AM_LDFLAGS) -o $@ $(LINK_OBJS) $(LINK_LIBS)
$(NM) -g -n $@ > $(basename $@).num
$(SIZE) $@
endef