crosstool-ng/samples/riscv32-picolibc-elf/crosstool.config
Chris Packham b46a0dbd1b samples: riscv32-picolibc-elf: Drop invalid config
CC_CC_GCC_ENABLE_DEFAULT_PIE=n is invalid Kconfig syntax for an option
that was intentionally disabled the saved config would be

  '# CC_CC_GCC_ENABLE_DEFAULT_PIE is not set'

but the DEFAULT_PIE option isn't selectable for RISCV && BARE_METAL so
the correct thing to do is just remove the config.

This also picks up a change regenerating the saved sample due to changes
in the Kconfig ordering.

Fixes #2019
Signed-off-by: Chris Packham <judge.packham@gmail.com>
2023-09-01 16:34:31 +12:00

16 lines
450 B
Plaintext

CT_CONFIG_VERSION="4"
CT_EXPERIMENTAL=y
CT_ARCH_RISCV=y
CT_MULTILIB=y
CT_ARCH_ARCH="rv32imac_zicsr_zifencei"
CT_ARCH_ABI="ilp32"
CT_TARGET_CFLAGS="-ftls-model=local-exec"
CT_TARGET_VENDOR="picolibc"
CT_LIBC_PICOLIBC=y
CT_LIBC_PICOLIBC_DEFAULT_FLASH_ADDR="0x80000000"
CT_LIBC_PICOLIBC_DEFAULT_FLASH_SIZE="0x00200000"
CT_LIBC_PICOLIBC_DEFAULT_RAM_ADDR="0x80200000"
CT_LIBC_PICOLIBC_DEFAULT_RAM_SIZE="0x00200000"
CT_CC_GCC_CONFIG_TLS=y
CT_CC_LANG_CXX=y