Re: [PATCH 1/1] common: always compile fixup_cmdtable()

2021-01-18 Thread Tom Rini
On Thu, Nov 26, 2020 at 08:46:37PM +0100, Heinrich Schuchardt wrote: > 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

Re: [PATCH 1/1] common: always compile fixup_cmdtable()

2020-11-30 Thread Simon Glass
On Thu, 26 Nov 2020 at 12:46, Heinrich Schuchardt wrote: > > 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_relo

[PATCH 1/1] common: always compile fixup_cmdtable()

2020-11-26 Thread Heinrich Schuchardt
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 --- common/comm