From dc11500a11e5ef1068182886007fccd4d7ad1c70 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sat, 21 Nov 2015 23:22:39 -0800 Subject: [PATCH] sim: common: set up CPPFLAGS/CXXFLAGS/LDFLAGS from configure [PR sim/18762] Make sure we pass down the CPP/CXX/LD flags that configure set up for us like we already do for C flags. --- sim/common/ChangeLog | 5 +++++ sim/common/Make-common.in | 3 +++ 2 files changed, 8 insertions(+) diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index 1b219950e62..eac223ceea3 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -1,3 +1,8 @@ +2015-11-21 Mike Frysinger + + PR sim/18762 + * Makefile.in (CPPFLAGS, CXXFLAGS, LDFLAGS): Define. + 2015-11-21 Mike Frysinger PR sim/19273 diff --git a/sim/common/Make-common.in b/sim/common/Make-common.in index 1766b83b8c1..647ec80eb79 100644 --- a/sim/common/Make-common.in +++ b/sim/common/Make-common.in @@ -72,6 +72,9 @@ INSTALL_DATA = @INSTALL_DATA@ CC = @CC@ CC_FOR_BUILD = @CC_FOR_BUILD@ CFLAGS = @CFLAGS@ +CPPFLAGS = @CPPFLAGS@ +CXXFLAGS = @CXXFLAGS@ +LDFLAGS = @LDFLAGS@ SIM_BSWAP = @sim_bswap@ SIM_CFLAGS = @sim_cflags@ SIM_DEBUG = @sim_debug@ -- 2.30.2