[libcpu]fix RT_ASSERT undefine (#7816)

This commit is contained in:
Supper Thomas 2023-07-14 09:47:02 +08:00 committed by GitHub
parent 2f5e4ac27e
commit 350626841a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 0 deletions

View File

@ -184,6 +184,7 @@ jobs:
- "imxrt/imxrt1052-seeed-ArchMix"
- "imxrt/imxrt1060-nxp-evk"
- "imxrt/imxrt1064-nxp-evk"
- "imxrt/imxrt1021-nxp-evk"
- "frdm-k64f"
- "lpc176x"
- "xplorer4330/M4"

View File

@ -69,6 +69,8 @@ MEMORY
/* Define output sections */
SECTIONS
{
__NCACHE_REGION_START = ORIGIN(m_nocache);
__NCACHE_REGION_SIZE = LENGTH(m_nocache);
.boot_data :
{
KEEP(*(.boot_hdr.conf))

View File

@ -9,6 +9,7 @@
* 2019-04-27 misonyo update to cortex-m7 series
*/
#include <rtthread.h>
#include <rthw.h>
#include <rtdef.h>
#include <board.h>