Skip to content

Commit

Permalink
Correct build issues in tests when using gcc 13.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
christophe0606 committed Oct 15, 2024
1 parent 5e83f57 commit d5f9b03
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion Testing/board/cdefault.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ default:
ASM:
- -masm=auto
Link:
- --specs=nano.specs
- -Wl,-Map=$elf()$.map
- -lm
- -Wl,--wrap=SysTick_Handler
Expand Down
4 changes: 2 additions & 2 deletions Testing/board/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ void run_test_group()
unsigned char *outputs = nullptr;
uint32_t total_bytes;

printf("Test %d\r\n",id);
printf("Test %ld\r\n",id);
#if defined (__ICACHE_PRESENT)
SCB_InvalidateICache();
#endif
Expand All @@ -102,7 +102,7 @@ void run_test_group()
}
else
{
printf("No output generated for %d\r\n",id);
printf("No output generated for %ld\r\n",id);
}
printf("\r\n");
}
Expand Down

0 comments on commit d5f9b03

Please sign in to comment.