aboutsummaryrefslogtreecommitdiff
path: root/tccpe.c
diff options
context:
space:
mode:
Diffstat (limited to 'tccpe.c')
-rw-r--r--tccpe.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/tccpe.c b/tccpe.c
index 7a96034..40e67b9 100644
--- a/tccpe.c
+++ b/tccpe.c
@@ -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
};