summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2003-06-24 13:42:40 +0000
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2003-06-24 13:42:40 +0000
commit0824d6fc674084519c856c433887221be099c549 (patch)
tree0f6b30912a6fc69a37ea757bfa5a8d9bc259b95c /Makefile
parent6c0372d30be01e2a4664def829ed9682c2846d29 (diff)
downloadqemu-0824d6fc674084519c856c433887221be099c549.tar.gz
for hard core developpers only: a new user mode linux project :-)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@267 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 848c707749..859bd45290 100644
--- a/Makefile
+++ b/Makefile
@@ -135,6 +135,10 @@ ifeq ($(ARCH),alpha)
echo -ne '\001\000\000\000' | dd of=qemu bs=1 seek=48 count=4 conv=notrunc
endif
+# must use static linking to avoid leaving stuff in virtual address space
+vl: vl.o libqemu.a
+ $(CC) -static -Wl,-T,i386-vl.ld -o $@ $^ $(LIBS)
+
depend: $(SRCS)
$(CC) -MM $(CFLAGS) $^ 1>.depend