This is an automated email from the ASF dual-hosted git repository. archer pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git
commit 800fac05d98c135ad4f64b9eff3396efdc526858 Author: Xiang Xiao <[email protected]> AuthorDate: Tue Dec 6 13:27:24 2022 +0800 mm: Change the default of MM_UBSAN_TRAP_ON_ERROR to n let's give more information by default Signed-off-by: Xiang Xiao <[email protected]> --- mm/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mm/Kconfig b/mm/Kconfig index 21950a696d..ddeaf1d41b 100644 --- a/mm/Kconfig +++ b/mm/Kconfig @@ -222,7 +222,7 @@ config MM_UBSAN_OPTION config MM_UBSAN_TRAP_ON_ERROR bool "Enable UBSan trap on error to crash immediately" depends on MM_UBSAN - default y + default n ---help--- The undefined instruction trap should cause your program to crash, save the code space significantly.
