[PATCH v3 05/15] configure: Emit HOST_CC to config-host.mak

Bastian Koppelmann posted 15 patches 4 years, 11 months ago
[PATCH v3 05/15] configure: Emit HOST_CC to config-host.mak
Posted by Bastian Koppelmann 4 years, 11 months ago
this is needed by the tricore-tcg-tests as tricore-gcc is not easily
available. Thus we rely on the HOST_CC to do the preprocessing of the
tricore assembly files.

Signed-off-by: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
---
 configure | 1 +
 1 file changed, 1 insertion(+)

diff --git a/configure b/configure
index 34fccaa2ba..a2e6f273f0 100755
--- a/configure
+++ b/configure
@@ -6140,6 +6140,7 @@ echo "GENISOIMAGE=$genisoimage" >> $config_host_mak
 echo "MESON=$meson" >> $config_host_mak
 echo "NINJA=$ninja" >> $config_host_mak
 echo "CC=$cc" >> $config_host_mak
+echo "HOST_CC=$host_cc" >> $config_host_mak
 if $iasl -h > /dev/null 2>&1; then
   echo "CONFIG_IASL=$iasl" >> $config_host_mak
 fi
-- 
2.30.1