aboutsummaryrefslogtreecommitdiff
path: root/tccgen.c
diff options
context:
space:
mode:
authorJames Lyon <jamesly0n@hotmail.com>2013-04-21 11:20:20 +0100
committerJames Lyon <jamesly0n@hotmail.com>2013-04-21 11:20:20 +0100
commit8a81f9e1036637e21a47e14fb56bf64133546890 (patch)
treefc7150b5f69bf24ddfe3bc0a7b94f4f23ec05926 /tccgen.c
parent05fa2e754b1f36f9dfb9e63b5c095765d64dd651 (diff)
downloadtinycc-8a81f9e1036637e21a47e14fb56bf64133546890.tar.gz
tinycc-8a81f9e1036637e21a47e14fb56bf64133546890.tar.bz2
Added CMake build system (to facilitate Win64 builds)
Win32 build and tests work under CMake, however I haven't added install code yet. Win64 build fails due to chkstk.S failing to assemble.
Diffstat (limited to 'tccgen.c')
-rw-r--r--tccgen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tccgen.c b/tccgen.c
index 71297be..d897296 100644
--- a/tccgen.c
+++ b/tccgen.c
@@ -3712,7 +3712,7 @@ ST_FUNC void unary(void)
}
}
break;
-#ifdef TCC_TARGET_X86_64
+#if defined(TCC_TARGET_X86_64) && !defined(TCC_TARGET_PE)
case TOK_builtin_va_arg_types:
{
CType type;