tccpe.c: fallback to libtcc1.a for other targets (ARM)

master
Henry Kroll III 2010-11-30 18:52:43 -08:00
parent 165d136614
commit 03b23994f1
1 changed files with 4 additions and 2 deletions

View File

@ -1770,10 +1770,12 @@ static void pe_add_runtime_ex(TCCState *s1, struct pe_info *pe)
if (0 == s1->nostdlib) {
static const char *libs[] = {
#ifdef TCC_TARGET_X86_64
#if defined(TCC_TARGET_X86_64)
"tcc1-win64",
#else
#elif defined(TCC_TARGET_I386)
"tcc1-win32",
#else
"tcc1",
#endif
"msvcrt", "kernel32", "", "user32", "gdi32", NULL
};