]> git.proxmox.com Git - mirror_qemu.git/blame_incremental - Makefile
arm emulation support
[mirror_qemu.git] / Makefile
... / ...
CommitLineData
1include config.mak
2
3CFLAGS=-Wall -O2 -g
4LDFLAGS=-g
5LIBS=
6DEFINES=-DHAVE_BYTESWAP_H
7HELPER_CFLAGS=$(CFLAGS)
8
9ifdef CONFIG_STATIC
10LDFLAGS+=-static
11endif
12
13ifeq ($(ARCH),i386)
14CFLAGS+=-fomit-frame-pointer
15OP_CFLAGS=$(CFLAGS) -mpreferred-stack-boundary=2
16ifeq ($(GCC_MAJOR),3)
17OP_CFLAGS+= -falign-functions=0
18else
19OP_CFLAGS+= -malign-functions=0
20endif
21ifdef TARGET_GPROF
22LDFLAGS+=-Wl,-T,i386.ld
23else
24# WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
25# that the kernel ELF loader considers as an executable. I think this
26# is the simplest way to make it self virtualizable!
27LDFLAGS+=-Wl,-shared
28endif
29endif
30
31ifeq ($(ARCH),ppc)
32OP_CFLAGS=$(CFLAGS)
33LDFLAGS+=-Wl,-T,ppc.ld
34endif
35
36ifeq ($(ARCH),s390)
37OP_CFLAGS=$(CFLAGS)
38LDFLAGS+=-Wl,-T,s390.ld
39endif
40
41ifeq ($(ARCH),sparc)
42CFLAGS+=-m32 -ffixed-g1 -ffixed-g2 -ffixed-g3 -ffixed-g6
43LDFLAGS+=-m32
44OP_CFLAGS=$(CFLAGS) -fno-delayed-branch -ffixed-i0
45HELPER_CFLAGS=$(CFLAGS) -ffixed-i0 -mflat
46LDFLAGS+=-Wl,-T,sparc.ld
47endif
48
49ifeq ($(ARCH),sparc64)
50CFLAGS+=-m64 -ffixed-g1 -ffixed-g2 -ffixed-g3 -ffixed-g6
51LDFLAGS+=-m64
52OP_CFLAGS=$(CFLAGS) -fno-delayed-branch -ffixed-i0
53endif
54
55ifeq ($(ARCH),alpha)
56# -msmall-data is not used because we want two-instruction relocations
57# for the constant constructions
58OP_CFLAGS=-Wall -O2 -g
59# Ensure there's only a single GP
60CFLAGS += -msmall-data
61LDFLAGS+=-Wl,-T,alpha.ld
62endif
63
64ifeq ($(ARCH),ia64)
65OP_CFLAGS=$(CFLAGS)
66endif
67
68ifeq ($(ARCH),arm)
69OP_CFLAGS=$(CFLAGS) -mno-sched-prolog
70LDFLAGS+=-Wl,-T,arm.ld
71endif
72
73ifeq ($(GCC_MAJOR),3)
74# very important to generate a return at the end of every operation
75OP_CFLAGS+=-fno-reorder-blocks -fno-optimize-sibling-calls
76endif
77
78#########################################################
79
80DEFINES+=-D_GNU_SOURCE
81LIBS+=-lm
82
83# profiling code
84ifdef TARGET_GPROF
85LDFLAGS+=-p
86main.o: CFLAGS+=-p
87endif
88
89OBJS= elfload.o main.o syscall.o mmap.o signal.o path.o
90ifeq ($(TARGET_ARCH), i386)
91OBJS+= vm86.o
92endif
93SRCS:= $(OBJS:.o=.c)
94OBJS+= libqemu.a
95
96# cpu emulator library
97LIBOBJS=thunk.o exec.o translate.o cpu-exec.o
98
99ifeq ($(TARGET_ARCH), i386)
100LIBOBJS+=translate-i386.o op-i386.o helper-i386.o
101endif
102ifeq ($(TARGET_ARCH), arm)
103LIBOBJS+=translate-arm.o op-arm.o
104endif
105
106# NOTE: the disassembler code is only needed for debugging
107LIBOBJS+=disas.o
108ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386)
109LIBOBJS+=i386-dis.o
110endif
111ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha)
112LIBOBJS+=alpha-dis.o
113endif
114ifeq ($(findstring ppc, $(TARGET_ARCH) $(ARCH)),ppc)
115LIBOBJS+=ppc-dis.o
116endif
117ifeq ($(findstring sparc, $(TARGET_ARCH) $(ARCH)),sparc)
118LIBOBJS+=sparc-dis.o
119endif
120ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
121LIBOBJS+=arm-dis.o
122endif
123
124ifeq ($(ARCH),ia64)
125OBJS += ia64-syscall.o
126endif
127
128all: qemu qemu-doc.html
129
130qemu: $(OBJS)
131 $(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
132ifeq ($(ARCH),alpha)
133# Mark as 32 bit binary, i. e. it will be mapped into the low 31 bit of
134# the address space (31 bit so sign extending doesn't matter)
135 echo -ne '\001\000\000\000' | dd of=qemu bs=1 seek=48 count=4 conv=notrunc
136endif
137
138depend: $(SRCS)
139 $(CC) -MM $(CFLAGS) $^ 1>.depend
140
141# libqemu
142
143libqemu.a: $(LIBOBJS)
144 rm -f $@
145 $(AR) rcs $@ $(LIBOBJS)
146
147dyngen: dyngen.c
148 $(HOST_CC) -O2 -Wall -g $< -o $@
149
150translate-$(TARGET_ARCH).o: translate-$(TARGET_ARCH).c gen-op-$(TARGET_ARCH).h opc-$(TARGET_ARCH).h cpu-$(TARGET_ARCH).h
151
152translate.o: translate.c op-$(TARGET_ARCH).h opc-$(TARGET_ARCH).h cpu-$(TARGET_ARCH).h
153
154op-$(TARGET_ARCH).h: op-$(TARGET_ARCH).o dyngen
155 ./dyngen -o $@ $<
156
157opc-$(TARGET_ARCH).h: op-$(TARGET_ARCH).o dyngen
158 ./dyngen -c -o $@ $<
159
160gen-op-$(TARGET_ARCH).h: op-$(TARGET_ARCH).o dyngen
161 ./dyngen -g -o $@ $<
162
163op-$(TARGET_ARCH).o: op-$(TARGET_ARCH).c
164 $(CC) $(OP_CFLAGS) $(DEFINES) -c -o $@ $<
165
166helper-$(TARGET_ARCH).o: helper-$(TARGET_ARCH).c
167 $(CC) $(HELPER_CFLAGS) $(DEFINES) -c -o $@ $<
168
169op-i386.o: op-i386.c opreg_template.h ops_template.h
170
171op-arm.o: op-arm.c op-arm-template.h
172
173%.o: %.c
174 $(CC) $(CFLAGS) $(DEFINES) -c -o $@ $<
175
176clean:
177 $(MAKE) -C tests clean
178 rm -f *.o *.a *~ qemu dyngen TAGS
179
180distclean: clean
181 rm -f config.mak config.h
182
183install: qemu
184 install -m 755 -s qemu $(prefix)/bin
185
186# various test targets
187test speed: qemu
188 make -C tests $@
189
190TAGS:
191 etags *.[ch] tests/*.[ch]
192
193# documentation
194qemu-doc.html: qemu-doc.texi
195 texi2html -monolithic -number $<
196
197FILES= \
198README README.distrib COPYING COPYING.LIB TODO Changelog VERSION \
199configure \
200dyngen.c dyngen.h dyngen-exec.h ioctls.h syscall_types.h \
201Makefile elf.h elfload.c main.c signal.c qemu.h \
202syscall.c syscall_defs.h vm86.c path.c mmap.c \
203ppc.ld alpha.ld s390.ld sparc.ld arm.ld\
204thunk.c cpu-exec.c translate.c cpu-all.h thunk.h exec.h\
205exec.c cpu-exec.c\
206cpu-i386.h op-i386.c helper-i386.c syscall-i386.h translate-i386.c \
207exec-i386.h ops_template.h op_string.h opreg_template.h \
208cpu-arm.h syscall-arm.h exec-arm.h op-arm.c translate-arm.c op-arm-template.h \
209dis-asm.h disas.c disas.h alpha-dis.c ppc-dis.c i386-dis.c sparc-dis.c \
210arm-dis.c \
211tests/Makefile \
212tests/test-i386.c tests/test-i386-shift.h tests/test-i386.h \
213tests/test-i386-muldiv.h tests/test-i386-code16.S tests/test-i386-vm86.S \
214tests/hello.c tests/hello \
215tests/hello-arm.c tests/hello-arm \
216tests/sha1.c \
217tests/testsig.c tests/testclone.c tests/testthread.c \
218tests/runcom.c tests/pi_10.com \
219tests/test_path.c \
220qemu-doc.texi qemu-doc.html
221
222FILE=qemu-$(VERSION)
223
224tar:
225 rm -rf /tmp/$(FILE)
226 mkdir -p /tmp/$(FILE)
227 cp -P $(FILES) /tmp/$(FILE)
228 ( cd /tmp ; tar zcvf ~/$(FILE).tar.gz $(FILE) )
229 rm -rf /tmp/$(FILE)
230
231# generate a binary distribution including the test binary environnment
232BINPATH=/usr/local/qemu-i386
233
234tarbin:
235 tar zcvf /tmp/qemu-$(VERSION)-i386-glibc21.tar.gz \
236 $(BINPATH)/etc $(BINPATH)/lib $(BINPATH)/bin $(BINPATH)/usr
237 tar zcvf /tmp/qemu-$(VERSION)-i386-wine.tar.gz \
238 $(BINPATH)/wine
239
240ifneq ($(wildcard .depend),)
241include .depend
242endif