aboutsummaryrefslogtreecommitdiffstats
path: root/runtime/Makefile
diff options
context:
space:
mode:
authorxleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2014-01-01 16:43:37 +0000
committerxleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2014-01-01 16:43:37 +0000
commit7e4e9417b6bfaf9f6a0f36e2fc040c12f8530889 (patch)
treeeccc49cef74eb53e0947cd4184d791620688fc37 /runtime/Makefile
parentc67f5803d5cd84dae8bd78901f9056a1f2eff700 (diff)
downloadcompcert-kvx-7e4e9417b6bfaf9f6a0f36e2fc040c12f8530889.tar.gz
compcert-kvx-7e4e9417b6bfaf9f6a0f36e2fc040c12f8530889.zip
Experimental support for <stdarg.h>, the GCC way. Works on IA32. To be tested on PowerPC and ARM.
git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@2394 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e
Diffstat (limited to 'runtime/Makefile')
-rw-r--r--runtime/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/Makefile b/runtime/Makefile
index 668e365b..0cdfd3bf 100644
--- a/runtime/Makefile
+++ b/runtime/Makefile
@@ -4,7 +4,8 @@ CFLAGS=-O1 -g -Wall
INCLUDES=
OBJS=i64_dtos.o i64_dtou.o i64_sar.o i64_sdiv.o i64_shl.o \
i64_shr.o i64_smod.o i64_stod.o i64_stof.o \
- i64_udivmod.o i64_udiv.o i64_umod.o i64_utod.o i64_utof.o
+ i64_udivmod.o i64_udiv.o i64_umod.o i64_utod.o i64_utof.o \
+ vararg.o
LIB=libcompcert.a
ifeq ($(strip $(HAS_RUNTIME_LIB)),true)