[libcpu]fix RT_ASSERT undefine (#7816)
This commit is contained in:
parent
2f5e4ac27e
commit
350626841a
|
@ -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"
|
||||
|
|
|
@ -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))
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue