You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[100%] Linking C executable zephyr.elf
/usr/bin/ld: The configuration system has incorrectly set 'CONFIG_KOBJECT_TEXT_AREA' to CONFIG_KOBJECT_TEXT_AREA, which is not big enough. You must through Kconfig either disable 'CONFIG_USERSPACE', or set 'CONFIG_KOBJECT_TEXT_AREA' to a value larger than CONFIG_KOBJECT_TEXT_AREA.
when building samples/subsys/debug/gdbstub/sample.debug.gdbstub with llvm.
The assert error message when CONFIG_KOBJECT_TEXT_AREA is
too small is confusing. Probably the original idea is for
the linker to substitue CONFIG_KOBJECT_TEXT_AREA with
the actual value. However, linker does not do that.
So change the message to say that the kconfig value needs
to be increased.
Fixeszephyrproject-rtos#34387
Signed-off-by: Daniel Leung <daniel.leung@intel.com>
The assert error message when CONFIG_KOBJECT_TEXT_AREA is
too small is confusing. Probably the original idea is for
the linker to substitue CONFIG_KOBJECT_TEXT_AREA with
the actual value. However, linker does not do that.
So change the message to say that the kconfig value needs
to be increased.
Fixes#34387
Signed-off-by: Daniel Leung <daniel.leung@intel.com>
Describe the bug
getting this:
when building
samples/subsys/debug/gdbstub/sample.debug.gdbstub
with llvm.zephyr/include/linker/kobject-text.ld
Line 35 in 3dd65a7
To Reproduce
Use LLVM for building
Expected behavior
The message is unclear and seem to be wrong,
set 'CONFIG_KOBJECT_TEXT_AREA' to a value larger than CONFIG_KOBJECT_TEXT_AREA
Impact
Confused about what need to be done...
The text was updated successfully, but these errors were encountered: