Skip to content
Merged

Sync #16

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion board/Corstone-300/Corstone-300.sct
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ LR_ITCM ITCM_BASE ITCM_SIZE
;-----------------------------------------------------
; BSS section - zero-initialized data in DTCM
;-----------------------------------------------------
ER_BSS +0 UNINIT
ER_BSS +0
{
*(.bss)
*(.bss.*)
Expand Down
6 changes: 3 additions & 3 deletions src/app_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ static const osThreadAttr_t executorch_thread_attr = {
/*-----------------------------------------------------------------------------
Toolchain identification
*----------------------------------------------------------------------------*/
#if defined(__clang__)
#if defined(__ARMCC_VERSION)
#define TOOLCHAIN_NAME "Arm Compiler"
#elif defined(__clang__)
#define TOOLCHAIN_NAME "Clang/LLVM"
#elif defined(__GNUC__)
#define TOOLCHAIN_NAME "GCC"
#elif defined(__ARMCC_VERSION)
#define TOOLCHAIN_NAME "Arm Compiler"
#else
#define TOOLCHAIN_NAME "Unknown"
#endif
Expand Down