Explorar el Código

Merge pull request #98 from expipiplus1/smaller-startup-section

Do not put ResetHandler in .startup with clang
teensy4-core
Paul Stoffregen hace 9 años
padre
commit
be531bc968
Se han modificado 1 ficheros con 5 adiciones y 0 borrados
  1. +5
    -0
      teensy3/mk20dx128.c

+ 5
- 0
teensy3/mk20dx128.c Ver fichero

@@ -577,7 +577,12 @@ void startup_early_hook(void) __attribute__ ((weak, alias("startup_default_earl
void startup_late_hook(void) __attribute__ ((weak, alias("startup_default_late_hook")));


#ifdef __clang__
// Clang seems to generate slightly larger code with Os than gcc
__attribute__ ((optimize("-Os")))
#else
__attribute__ ((section(".startup"),optimize("-Os")))
#endif
void ResetHandler(void)
{
uint32_t *src = &_etext;

Cargando…
Cancelar
Guardar