You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
716 B
30 lines
716 B
# |
|
# For a description of the syntax of this configuration file, |
|
# see misc/tools/kconfig-language.txt. |
|
# |
|
|
|
config ELF_ALIGN_LOG2 |
|
int "Log2 Section Alignment" |
|
default 2 |
|
---help--- |
|
Align all sections to this Log2 value: 0->1, 1->2, 2->4, etc. |
|
|
|
config ELF_STACKSIZE |
|
int "ELF Stack Size" |
|
default 2048 |
|
---help--- |
|
This is the default stack size that will will be used when starting ELF binaries. |
|
|
|
config ELF_CONSTRUCTORS |
|
bool "C++ Static Constructor Support" |
|
default n |
|
depends on HAVE_CXX |
|
---help--- |
|
Build in support for C++ constructors in ELF modules. |
|
|
|
config ELF_DUMPBUFFER |
|
bool "Dump ELF buffers" |
|
default n |
|
depends on DEBUG && DEBUG_VERBOSE |
|
---help--- |
|
Dump various ELF buffers for debug purposes
|
|
|