]> git.baikalelectronics.ru Git - uboot.git/commit
common: always compile fixup_cmdtable()
authorHeinrich Schuchardt <xypron.glpk@gmx.de>
Thu, 26 Nov 2020 19:46:37 +0000 (20:46 +0100)
committerTom Rini <trini@konsulko.com>
Sat, 16 Jan 2021 19:49:09 +0000 (14:49 -0500)
commit0e2f18fed01b0f7bcb06a751567c3462e6567cc2
tree34185de3f7813a16f856c30b8a648fbf4b1eb8d0
parent3bace0f3153b814344ab7070b217a6aeacca20a7
common: always compile fixup_cmdtable()

With our optimization settings the linker eliminates unused functions.

But for debugging it is better to compile with -Og or -O0. With -O0
compiling the sandbox fails due to the missing function fixup_cmdtable()
called by dm_reloc() and others.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
common/command.c