提交 880e4768 编写于 作者: A Alper Nebi Yasak 提交者: Simon Glass

tools: Fix default target compile tools in Python tools

In commit 1e4687aa ("binman: Use target-specific tools when
cross-compiling"), a utility function was implemented to get preferred
compilation tools using environment variables like CC and CROSS_COMPILE.
Although it intended to provide custom default tools (same as those in
the global Makefile) when no relevant variables were set (for example
using "gcc" for "cc"), it is only doing so when CROSS_COMPILE is set and
returning the literal name of the tool otherwise.

Remove the check for an empty CROSS_COMPILE, which makes the function
use it as an empty prefix to the custom defaults and return the intended
executables.

Fixes: 1e4687aa ("binman: Use target-specific tools when cross-compiling")
Signed-off-by: NAlper Nebi Yasak <alpernebiyasak@gmail.com>
上级 e712245d
......@@ -292,8 +292,6 @@ def GetTargetCompileTool(name, cross_compile=None):
if cross_compile is None:
cross_compile = env.get('CROSS_COMPILE', '')
if not cross_compile:
return name, []
if name in ('as', 'ar', 'nm', 'ldr', 'strip', 'objcopy', 'objdump'):
target_name = cross_compile + name
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册