mirror of
https://github.com/apache/nuttx.git
synced 2026-08-03 13:19:01 +00:00
arch: fix cmake error
Add default values (0x0) for ARCH_TEXT_VBASE, ARCH_DATA_VBASE, and ARCH_HEAP_VBASE to resolve cmake configuration warnings when these values are not explicitly set during initialization. Signed-off-by: hujun5 <hujun5@xiaomi.com>
This commit is contained in:
parent
37ecb28eb1
commit
f6f8acafbb
1 changed files with 3 additions and 0 deletions
|
|
@ -786,16 +786,19 @@ if ARCH_ADDRENV && ARCH_NEED_ADDRENV_MAPPING
|
|||
|
||||
config ARCH_TEXT_VBASE
|
||||
hex "Virtual .text base"
|
||||
default 0x0
|
||||
---help---
|
||||
The virtual address of the beginning the .text region
|
||||
|
||||
config ARCH_DATA_VBASE
|
||||
hex "Virtual .bss/.data base"
|
||||
default 0x0
|
||||
---help---
|
||||
The virtual address of the beginning of the .bss/.data region.
|
||||
|
||||
config ARCH_HEAP_VBASE
|
||||
hex "Virtual heap base"
|
||||
default 0x0
|
||||
---help---
|
||||
The virtual address of the beginning of the heap region.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue