posix: options: mmap: disable xtensa support due to linker issue
The Xtensa linker scripts seem to be injecting syntax errors when MMU is enabled. Disable the implication in Kconfig.mem for Xtensa until linker issues are resolved. Signed-off-by: Chris Friedt <cfriedt@tenstorrent.com>
This commit is contained in:
parent
cee9166dee
commit
d58a5ce580
1 changed files with 2 additions and 1 deletions
|
|
@ -27,7 +27,8 @@ config POSIX_SHARED_MEMORY_OBJECTS
|
||||||
|
|
||||||
config POSIX_MAPPED_FILES
|
config POSIX_MAPPED_FILES
|
||||||
bool "POSIX memory-mapped files"
|
bool "POSIX memory-mapped files"
|
||||||
imply MMU
|
# disable Xtensa for now until linker issues are resolved
|
||||||
|
imply MMU if (CPU_HAS_MMU && !XTENSA)
|
||||||
help
|
help
|
||||||
Select 'y' here and Zephyr will provide support for mmap(), msync(), and munmap().
|
Select 'y' here and Zephyr will provide support for mmap(), msync(), and munmap().
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue