mirror of https://github.com/thesofproject/sof.git
scripts: remove XTOBJDUMP and XTOBJCOPY unused since CMake / Jan 2019
XTOBJCOPY and XTOBJDUMP were added in June 2018 by commit27795ece0f
("scripts: fix xt-xcc build with wrong config") for `./configure CC=$XCC OBJCOPY=$XTOBJCOPY OBJDUMP=$XTOBJDUMP ...` that was used at the time. The build system was switched to CMake in January 2019, notably with commit9840ecbbfe
("cmake: update xtensa-build-all.sh") and commit0fd97adfb0
("cmake: add utility scripts") that defined CMAKE_OBJCOPY and CMAKE_OBJDUMP) Signed-off-by: Marc Herbert <marc.herbert@intel.com>
This commit is contained in:
parent
e6c3dda61a
commit
732c75259d
|
@ -326,12 +326,8 @@ do
|
||||||
if [ -d "$XTENSA_TOOLS_DIR" ]
|
if [ -d "$XTENSA_TOOLS_DIR" ]
|
||||||
then
|
then
|
||||||
XCC="xt-xcc"
|
XCC="xt-xcc"
|
||||||
XTOBJCOPY="xt-objcopy"
|
|
||||||
XTOBJDUMP="xt-objdump"
|
|
||||||
else
|
else
|
||||||
XCC="none"
|
XCC="none"
|
||||||
XTOBJCOPY="none"
|
|
||||||
XTOBJDUMP="none"
|
|
||||||
>&2 printf 'WARNING: %s
|
>&2 printf 'WARNING: %s
|
||||||
\t is not a directory, reverting to gcc\n' "$XTENSA_TOOLS_DIR"
|
\t is not a directory, reverting to gcc\n' "$XTENSA_TOOLS_DIR"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue