commit | 0ba04f0af56254a94a7d06379e11d998602f2864 | [log] [tgz] |
---|---|---|
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | Thu Nov 26 20:46:37 2020 +0100 |
committer | Tom Rini <trini@konsulko.com> | Sat Jan 16 14:49:09 2021 -0500 |
tree | 34185de3f7813a16f856c30b8a648fbf4b1eb8d0 | |
parent | ba87da454f5c1628c660e11f3d4c2675af114347 [diff] |
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>