aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorShinichiro Hamaji <shinichiro.hamaji _at_ gmail.com>2009-06-09 03:23:08 +0900
committerShinichiro Hamaji <shinichiro.hamaji _at_ gmail.com>2009-06-09 03:23:08 +0900
commit8ea8305199496ba29b6d0da2de07aea4441844aa (patch)
tree7be3548c7ebde884607653e2ada85a10629cfde7 /Makefile
parent110a4edc154f6fb73ef3d312630455f68641123f (diff)
downloadtinycc-8ea8305199496ba29b6d0da2de07aea4441844aa.tar.gz
tinycc-8ea8305199496ba29b6d0da2de07aea4441844aa.tar.bz2
x86-64: Add alloca.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 1a2b5f7..730b817 100644
--- a/Makefile
+++ b/Makefile
@@ -177,6 +177,10 @@ VPATH+=win32/lib
endif
ifeq ($(ARCH),i386)
LIBTCC1_OBJS+=alloca86.o alloca86-bt.o
+else
+ifeq ($(ARCH),x86-64)
+LIBTCC1_OBJS+=alloca86_64.o
+endif
endif
%.o: %.c