-
Notifications
You must be signed in to change notification settings - Fork 1.6k
libs: Add support for latest LLVM LIBCXX and LIBCXXABI version 21.1.8 #17826
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Barto22
wants to merge
17
commits into
apache:master
from
Barto22:feature/add-support-for-latest-libcxx-and-libcxxabi
Closed
Changes from 4 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
8b22b70
libs/libxx: Add support for libcxx and libcxxabi version 21.1.8
Barto22 6cb466c
libs/libxx: Fix issue with exception handling
Barto22 0b3dd30
arch/esp32: Add changes for esp32 riscv work
Barto22 d2094d6
libs/libxx/libcxx/: Added supported for threads
Barto22 141a55f
arch/arm: Remove long-calls
Barto22 b434ed5
ci/docker/: Update Ubuntu version with ARM, RISCV gnu toolchains
Barto22 527bf76
libs/libxx/: Fix CMakeLists.txt formatting
Barto22 05f48af
boards/sim/: Change mcmodel to large
Barto22 8fe85d4
libs/libxx/: FIx CMakLists.txt patches
Barto22 804d1f1
tools/ci/docker/: Update clang to version 21 in Dockerfile
Barto22 ce13662
/tools/ci/docker/: Fix clang version for ubuntu 22.04
Barto22 fa52c20
/nuttx/boards/: Revert changes for SIM boards
Barto22 c86ef55
/boards/sim/: Minor fix of TFLM defconfig
Barto22 7a9888b
boards/riscv/: Change _einit section
Barto22 d339359
/libs/libc/: Fix formatting
Barto22 553a703
/libs/libc/: Minor style fix
Barto22 737c741
/libcxx/libcxx/: Change libcxx and libcxxabi version to 19
Barto22 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
59 changes: 59 additions & 0 deletions
59
boards/risc-v/esp32c3/esp32c3-devkit/configs/testlibcxx/defconfig
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,59 @@ | ||
| # | ||
| # This file is autogenerated: PLEASE DO NOT EDIT IT. | ||
| # | ||
| # You can use "make menuconfig" to make any modifications to the installed .config file. | ||
| # You can then do "make savedefconfig" to generate a new defconfig file that includes your | ||
| # modifications. | ||
| # | ||
| # CONFIG_NSH_ARGCAT is not set | ||
| # CONFIG_NSH_CMDOPT_HEXDUMP is not set | ||
| CONFIG_ARCH="risc-v" | ||
| CONFIG_ARCH_BOARD="esp32c3-devkit" | ||
| CONFIG_ARCH_BOARD_COMMON=y | ||
| CONFIG_ARCH_BOARD_ESP32C3_DEVKIT=y | ||
| CONFIG_ARCH_CHIP="esp32c3" | ||
| CONFIG_ARCH_CHIP_ESP32C3=y | ||
| CONFIG_ARCH_INTERRUPTSTACK=1536 | ||
| CONFIG_ARCH_RISCV=y | ||
| CONFIG_ARCH_STACKDUMP=y | ||
| CONFIG_BOARDCTL_RESET=y | ||
| CONFIG_BOARD_LOOPSPERMSEC=15000 | ||
| CONFIG_BUILTIN=y | ||
| CONFIG_FS_PROCFS=y | ||
| CONFIG_IDLETHREAD_STACKSIZE=2048 | ||
| CONFIG_INIT_ENTRYPOINT="nsh_main" | ||
| CONFIG_INTELHEX_BINARY=y | ||
| CONFIG_LIBC_PERROR_STDOUT=y | ||
| CONFIG_LIBC_STRERROR=y | ||
| CONFIG_NFILE_DESCRIPTORS_PER_BLOCK=6 | ||
| CONFIG_NSH_ARCHINIT=y | ||
| CONFIG_NSH_BUILTIN_APPS=y | ||
| CONFIG_NSH_FILEIOSIZE=512 | ||
| CONFIG_NSH_READLINE=y | ||
| CONFIG_NSH_STRERROR=y | ||
| CONFIG_PREALLOC_TIMERS=0 | ||
| CONFIG_RR_INTERVAL=200 | ||
| CONFIG_SCHED_BACKTRACE=y | ||
| CONFIG_SCHED_WAITPID=y | ||
| CONFIG_START_DAY=29 | ||
| CONFIG_START_MONTH=11 | ||
| CONFIG_START_YEAR=2019 | ||
| CONFIG_SYSTEM_DUMPSTACK=y | ||
| CONFIG_SYSTEM_NSH=y | ||
| CONFIG_TESTING_GETPRIME=y | ||
| CONFIG_TESTING_OSTEST=y | ||
| CONFIG_UART0_SERIAL_CONSOLE=y | ||
| CONFIG_BUILTIN=y | ||
| CONFIG_CXX_LOCALIZATION=y | ||
| CONFIG_CXX_WCHAR=y | ||
| CONFIG_EXAMPLES_HELLOXX=y | ||
| CONFIG_HAVE_CXX=y | ||
| CONFIG_LIBCXX=y | ||
| CONFIG_LIBCXXABI=y | ||
| CONFIG_CXX_EXCEPTION=y | ||
| CONFIG_CXX_RTTI=y | ||
| CONFIG_TESTING_CXXTEST=y | ||
| CONFIG_LIBC_LOCALE=y | ||
| CONFIG_TLS_NELEM=16 | ||
| CONFIG_TLS_TASK_NELEM=8 | ||
| CONFIG_DEFAULT_THREAD_STACKSIZE=4096 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.