diff options
author | Keith Packard <keithp@keithp.com> | 2023-04-03 15:49:14 -0700 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2023-04-19 15:13:55 +1200 |
commit | c33c2bf04e3a8288d79b55cf95206a34b33b6ccf (patch) | |
tree | 6b2df89ea233c98ee54cbad982af7c8102f1b4a5 /config | |
parent | 06faf2002e547fbaab53ffb2daac8b83238bc169 (diff) | |
download | crosstool-ng-c33c2bf04e3a8288d79b55cf95206a34b33b6ccf.tar.gz crosstool-ng-c33c2bf04e3a8288d79b55cf95206a34b33b6ccf.tar.bz2 crosstool-ng-c33c2bf04e3a8288d79b55cf95206a34b33b6ccf.zip |
picolibc: Allow default memory layout values to be configured
These values are used when constructing the default linker scripts
used with picolibc. Setting reasonable defaults allows simple test
applications to be compiled without additional configuration.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'config')
-rw-r--r-- | config/libc/picolibc.in | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/config/libc/picolibc.in b/config/libc/picolibc.in index cd6da1ed..6c4c6cac 100644 --- a/config/libc/picolibc.in +++ b/config/libc/picolibc.in @@ -123,3 +123,43 @@ config LIBC_PICOLIBC_EXTRA_CONFIG_ARRAY default "" help Extra flags to pass to meson when configuring picolibc. + +config LIBC_PICOLIBC_DEFAULT_FLASH_ADDR + string + prompt "Default flash address for picolibc.ld" + default "0x10000000" + help + Sets the default base adddress for the read-only portion of the + application when linked using the default picolibc link + script. Can be overridden on the linker command line using + -Wl,--defsym=__flash=<value> + +config LIBC_PICOLIBC_DEFAULT_FLASH_SIZE + string + prompt "Default flash size for picolibc.ld" + default "0x00010000" + help + Sets the default size for the read-only portion of the + application when linked using the default picolibc link script. + Can be overridden on the linker command line using + -Wl,--defsym=__flash_size=<value> + +config LIBC_PICOLIBC_DEFAULT_RAM_ADDR + string + prompt "Default ram address for picolibc.ld" + default "0x20000000" + help + Sets the default base adddress for the read-write portion of the + application when linked using the default picolibc link + script. Can be overridden on the linker command line using + -Wl,--defsym=__ram=<value> + +config LIBC_PICOLIBC_DEFAULT_RAM_SIZE + string + prompt "Default ram size for picolibc.ld" + default "0x00008000" + help + Sets the default size for the read-write portion of the + application when linked using the default picolibc link script. + Can be overridden on the linker command line using + -Wl,--defsym=__ram_size=<value> |