libs/libc/ Kconfig files: Disable EXECFUNCS_HAVE_SYMTAB for kernel build. The symbol table don't have any meaning for kernel build since all executable binary should be self contained.

This commit is contained in:
Xiang Xiao 2019-10-01 07:19:21 -06:00 committed by Gregory Nutt
parent 5058911f46
commit f23ccd5bb0
2 changed files with 3 additions and 3 deletions

View File

@ -59,7 +59,7 @@ config MODLIB_DUMPBUFFER
config MODLIB_HAVE_SYMTAB
bool "Have symbol table"
default n if BUILD_KERNEL
default n
---help---
If you have a module library symbol table, then you may select this
option in order to use it. Symbol tables are required in most

View File

@ -35,8 +35,8 @@ if LIBC_EXECFUNCS
config EXECFUNCS_HAVE_SYMTAB
bool "Have symbol table"
default n if !BUILD_KERNEL
default y if BUILD_KERNEL
default n
depends on !BUILD_KERNEL
---help---
If you have a system symbol table, then you may select this
option in order to use it. Symbol tables are required in most