2007-09-18 Joel Sherrill <joel.sherrill@OARcorp.com>

* Makefile.inc.in: Add CXX and CXX_FOR_TARGET.
This commit is contained in:
Joel Sherrill
2007-09-18 17:55:35 +00:00
parent 37b1a9468d
commit 5ac8f13977
2 changed files with 7 additions and 0 deletions

View File

@@ -1,3 +1,7 @@
2007-09-18 Joel Sherrill <joel.sherrill@OARcorp.com>
* Makefile.inc.in: Add CXX and CXX_FOR_TARGET.
2007-08-04 Ralf Corsépius <ralf.corsepius@rtems.org>
* bsp.cfg.in: Hard-code HAS_RDBG = no.

View File

@@ -8,6 +8,7 @@ prefix = @prefix@
exec_prefix = @exec_prefix@
CC_FOR_TARGET = @CC@
CXX_FOR_TARGET = @CXX@
AS_FOR_TARGET = @AS@
AR_FOR_TARGET = @AR@
NM_FOR_TARGET = @NM@
@@ -16,6 +17,7 @@ SIZE_FOR_TARGET = @SIZE@
OBJCOPY_FOR_TARGET = @OBJCOPY@
CC= $(CC_FOR_TARGET)
CXX= $(CXX_FOR_TARGET)
AS= $(AS_FOR_TARGET)
LD= $(LD_FOR_TARGET)
NM= $(NM_FOR_TARGET)
@@ -24,6 +26,7 @@ SIZE= $(SIZE_FOR_TARGET)
OBJCOPY= $(OBJCOPY_FOR_TARGET)
export CC
export CXX
export AS
export LD
export NM