bootstrappable: Handle libtcc1.a.

This commit is contained in:
Jan Nieuwenhuizen 2018-05-04 20:19:42 +02:00
parent 72a0f2c04e
commit 04899fd44e
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
1 changed files with 2 additions and 0 deletions

View File

@ -1146,7 +1146,9 @@ ST_FUNC void tcc_add_runtime(TCCState *s1)
tcc_add_dll(s1, TCC_LIBGCC, 0);
}
#endif
#if CONFIG_TCC_LIBTCC1
tcc_add_support(s1, TCC_LIBTCC1);
#endif
/* add crt end if not memory output */
if (s1->output_type != TCC_OUTPUT_MEMORY)
tcc_add_crt(s1, "crtn.o");