This patch changes the environment variable XTENSA_CORE for BYT, CHT, HSW, and BDW platforms. It is used during the configure script run to define the configuration for the xt-xcc compiler. The xt-xcc version for Minnowboard developers uses this configuration name so this edit avoids to specify it via configure command line (with another issue there). Also the earlier used configuration name is not available in that compiler.
Signed-off-by: Seppo Ingalsuo seppo.ingalsuo@linux.intel.com --- configure.ac | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/configure.ac b/configure.ac index bb4d2e9..2e92bb3 100644 --- a/configure.ac +++ b/configure.ac @@ -112,7 +112,7 @@ case "$with_platform" in FW_NAME="byt" AC_SUBST(FW_NAME)
- XTENSA_CORE="hifiep_bd5" + XTENSA_CORE="Intel_HiFiEP" AC_SUBST(XTENSA_CORE)
AC_DEFINE([CONFIG_BAYTRAIL], [1], [Configure for Baytrail]) @@ -129,7 +129,7 @@ case "$with_platform" in FW_NAME="cht" AC_SUBST(FW_NAME)
- XTENSA_CORE="hifiep_bd5" + XTENSA_CORE="Intel_HiFiEP" AC_SUBST(XTENSA_CORE)
AC_DEFINE([CONFIG_CHERRYTRAIL], [1], [Configure for Cherrytrail]) @@ -164,7 +164,7 @@ case "$with_platform" in FW_NAME="hsw" AC_SUBST(FW_NAME)
- XTENSA_CORE="hifiep_bd5" + XTENSA_CORE="Intel_HiFiEP" AC_SUBST(XTENSA_CORE)
AC_DEFINE([CONFIG_HASWELL], [1], [Configure for Haswell]) @@ -181,7 +181,7 @@ case "$with_platform" in FW_NAME="bdw" AC_SUBST(FW_NAME)
- XTENSA_CORE="hifiep_bd5" + XTENSA_CORE="Intel_HiFiEP" AC_SUBST(XTENSA_CORE)
AC_DEFINE([CONFIG_BROADWELL], [1], [Configure for Broadwell])