]>
Commit | Line | Data |
---|---|---|
626df76a FB |
1 | include config.mak |
2 | ||
0b0babc6 FB |
3 | TARGET_BASE_ARCH:=$(TARGET_ARCH) |
4 | ifeq ($(TARGET_ARCH), x86_64) | |
5 | TARGET_BASE_ARCH:=i386 | |
6 | endif | |
540635ba TS |
7 | ifeq ($(TARGET_ARCH), mipsn32) |
8 | TARGET_BASE_ARCH:=mips | |
9 | endif | |
fbe4f65b TS |
10 | ifeq ($(TARGET_ARCH), mips64) |
11 | TARGET_BASE_ARCH:=mips | |
12 | endif | |
a2458627 FB |
13 | ifeq ($(TARGET_ARCH), ppc64) |
14 | TARGET_BASE_ARCH:=ppc | |
15 | endif | |
22f8a8b3 JM |
16 | ifeq ($(TARGET_ARCH), ppc64h) |
17 | TARGET_BASE_ARCH:=ppc | |
18 | endif | |
d4082e95 JM |
19 | ifeq ($(TARGET_ARCH), ppcemb) |
20 | TARGET_BASE_ARCH:=ppc | |
21 | endif | |
64b3ab24 FB |
22 | ifeq ($(TARGET_ARCH), sparc64) |
23 | TARGET_BASE_ARCH:=sparc | |
24 | endif | |
0b0babc6 | 25 | TARGET_PATH=$(SRC_PATH)/target-$(TARGET_BASE_ARCH) |
4fb240a4 | 26 | VPATH=$(SRC_PATH):$(TARGET_PATH):$(SRC_PATH)/hw |
46dc3881 | 27 | CPPFLAGS=-I. -I.. -I$(TARGET_PATH) -I$(SRC_PATH) -MMD -MT $@ -MP -DNEED_CPU_H |
0b0babc6 | 28 | #CFLAGS+=-Werror |
626df76a | 29 | LIBS= |
67b915a5 | 30 | DYNGEN=../dyngen$(EXESUF) |
1e43adfc | 31 | # user emulator name |
0c64b9cd | 32 | ifndef TARGET_ARCH2 |
c91fde65 | 33 | TARGET_ARCH2=$(TARGET_ARCH) |
0c64b9cd | 34 | endif |
808c4954 FB |
35 | ifeq ($(TARGET_ARCH),arm) |
36 | ifeq ($(TARGET_WORDS_BIGENDIAN),yes) | |
c91fde65 | 37 | TARGET_ARCH2=armeb |
808c4954 | 38 | endif |
c91fde65 | 39 | endif |
908f52b0 PB |
40 | ifeq ($(TARGET_ARCH),sh4) |
41 | ifeq ($(TARGET_WORDS_BIGENDIAN),yes) | |
42 | TARGET_ARCH2=sh4eb | |
43 | endif | |
44 | endif | |
01f5e596 | 45 | ifeq ($(TARGET_ARCH),mips) |
c91fde65 FB |
46 | ifneq ($(TARGET_WORDS_BIGENDIAN),yes) |
47 | TARGET_ARCH2=mipsel | |
01f5e596 | 48 | endif |
01f5e596 | 49 | endif |
540635ba TS |
50 | ifeq ($(TARGET_ARCH),mipsn32) |
51 | ifneq ($(TARGET_WORDS_BIGENDIAN),yes) | |
52 | TARGET_ARCH2=mipsn32el | |
53 | endif | |
54 | endif | |
fbe4f65b TS |
55 | ifeq ($(TARGET_ARCH),mips64) |
56 | ifneq ($(TARGET_WORDS_BIGENDIAN),yes) | |
57 | TARGET_ARCH2=mips64el | |
58 | endif | |
59 | endif | |
40293e58 FB |
60 | |
61 | ifdef CONFIG_USER_ONLY | |
62 | # user emulator name | |
63 | QEMU_PROG=qemu-$(TARGET_ARCH2) | |
64 | else | |
1e43adfc | 65 | # system emulator name |
a541f297 | 66 | ifeq ($(TARGET_ARCH), i386) |
40293e58 | 67 | QEMU_PROG=qemu$(EXESUF) |
0db63474 | 68 | else |
40293e58 | 69 | QEMU_PROG=qemu-system-$(TARGET_ARCH2)$(EXESUF) |
a541f297 | 70 | endif |
de5eaa64 | 71 | endif |
626df76a | 72 | |
40293e58 | 73 | PROGS=$(QEMU_PROG) |
626df76a | 74 | |
6f30fa85 | 75 | # We require -O2 to avoid the stack setup prologue in EXIT_TB |
ac41a620 BS |
76 | OP_CFLAGS := -O2 -g -fno-strict-aliasing |
77 | OP_CFLAGS += -Wall -Wundef -Wendif-labels -Wwrite-strings | |
6c041c54 TS |
78 | |
79 | # cc-option | |
80 | # Usage: OP_CFLAGS+=$(call cc-option, -falign-functions=0, -malign-functions=0) | |
81 | ||
82 | cc-option = $(shell if $(CC) $(OP_CFLAGS) $(1) -S -o /dev/null -xc /dev/null \ | |
83 | > /dev/null 2>&1; then echo "$(1)"; else echo "$(2)"; fi ;) | |
84 | ||
85 | OP_CFLAGS+=$(call cc-option, -fno-reorder-blocks, "") | |
86 | OP_CFLAGS+=$(call cc-option, -fno-gcse, "") | |
87 | OP_CFLAGS+=$(call cc-option, -fno-tree-ch, "") | |
88 | OP_CFLAGS+=$(call cc-option, -fno-optimize-sibling-calls, "") | |
89 | OP_CFLAGS+=$(call cc-option, -fno-crossjumping, "") | |
90 | OP_CFLAGS+=$(call cc-option, -fno-align-labels, "") | |
91 | OP_CFLAGS+=$(call cc-option, -fno-align-jumps, "") | |
92 | OP_CFLAGS+=$(call cc-option, -fno-align-functions, $(call cc-option, -malign-functions=0, "")) | |
1870a74c | 93 | OP_CFLAGS+=$(call cc-option, -fno-section-anchors, "") |
6f30fa85 | 94 | |
40293e58 FB |
95 | HELPER_CFLAGS= |
96 | ||
626df76a | 97 | ifeq ($(ARCH),i386) |
6f30fa85 TS |
98 | HELPER_CFLAGS+=-fomit-frame-pointer |
99 | OP_CFLAGS+=-mpreferred-stack-boundary=2 -fomit-frame-pointer | |
f2bf094e AJ |
100 | # op.c and helper.c need this on 32-bit x86 system to avoid |
101 | # a compiler spill error. This can probably go away | |
102 | # once the SSE ops have been converted to TCG | |
103 | ifeq ($(HAVE_GT_GCC_3_3), true) | |
104 | I386_CFLAGS=-march=i586 -mtune=i686 | |
105 | endif | |
bc51c5c9 FB |
106 | endif |
107 | ||
626df76a | 108 | ifeq ($(ARCH),ppc) |
6f30fa85 | 109 | CPPFLAGS+= -D__powerpc__ |
176a4f29 | 110 | OP_CFLAGS+= -mlongcall |
626df76a FB |
111 | endif |
112 | ||
113 | ifeq ($(ARCH),sparc) | |
40293e58 | 114 | CFLAGS+=-ffixed-g2 -ffixed-g3 |
3142255c BS |
115 | OP_CFLAGS+=-fno-delayed-branch -ffixed-i0 |
116 | ifeq ($(CONFIG_SOLARIS),yes) | |
117 | OP_CFLAGS+=-fno-omit-frame-pointer | |
118 | else | |
40293e58 FB |
119 | CFLAGS+=-ffixed-g1 -ffixed-g6 |
120 | HELPER_CFLAGS+=-ffixed-i0 | |
3142255c | 121 | endif |
fdbb4691 | 122 | endif |
626df76a FB |
123 | |
124 | ifeq ($(ARCH),sparc64) | |
3142255c BS |
125 | OP_CFLAGS+=-mcpu=ultrasparc -m64 -fno-delayed-branch -ffixed-i0 |
126 | ifneq ($(CONFIG_SOLARIS),yes) | |
e97b640d BS |
127 | CFLAGS+=-ffixed-g5 -ffixed-g6 -ffixed-g7 |
128 | OP_CFLAGS+=-ffixed-g5 -ffixed-g6 -ffixed-g7 | |
129 | else | |
130 | CFLAGS+=-ffixed-g1 -ffixed-g4 -ffixed-g5 -ffixed-g7 | |
3142255c | 131 | endif |
626df76a FB |
132 | endif |
133 | ||
134 | ifeq ($(ARCH),alpha) | |
6f30fa85 TS |
135 | # -msmall-data is not used for OP_CFLAGS because we want two-instruction |
136 | # relocations for the constant constructions | |
626df76a | 137 | # Ensure there's only a single GP |
40293e58 | 138 | CFLAGS+=-msmall-data |
626df76a FB |
139 | endif |
140 | ||
f54b3f92 AJ |
141 | ifeq ($(ARCH),hppa) |
142 | OP_CFLAGS=-O1 -fno-delayed-branch | |
143 | BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
144 | endif | |
145 | ||
626df76a | 146 | ifeq ($(ARCH),ia64) |
40293e58 | 147 | CFLAGS+=-mno-sdata |
6f30fa85 | 148 | OP_CFLAGS+=-mno-sdata |
626df76a FB |
149 | endif |
150 | ||
151 | ifeq ($(ARCH),arm) | |
6f30fa85 | 152 | OP_CFLAGS+=-mno-sched-prolog -fno-omit-frame-pointer |
626df76a FB |
153 | endif |
154 | ||
38e584a0 | 155 | ifeq ($(ARCH),m68k) |
6f30fa85 | 156 | OP_CFLAGS+=-fomit-frame-pointer |
6f30fa85 TS |
157 | endif |
158 | ||
159 | ifeq ($(ARCH),mips) | |
9617efe8 | 160 | OP_CFLAGS+=-mabi=32 -G0 -fno-PIC -mno-abicalls -fomit-frame-pointer -fno-delayed-branch -Wa,-O0 |
fbe4f65b TS |
161 | endif |
162 | ||
163 | ifeq ($(ARCH),mips64) | |
9617efe8 | 164 | OP_CFLAGS+=-mabi=n32 -G0 -fno-PIC -mno-abicalls -fomit-frame-pointer -fno-delayed-branch -Wa,-O0 |
83fb7adf FB |
165 | endif |
166 | ||
40293e58 FB |
167 | CFLAGS+=$(OS_CFLAGS) $(ARCH_CFLAGS) |
168 | LDFLAGS+=$(OS_LDFLAGS) $(ARCH_LDFLAGS) | |
3142255c | 169 | OP_CFLAGS+=$(OS_CFLAGS) $(ARCH_CFLAGS) |
626df76a | 170 | |
6f30fa85 | 171 | CPPFLAGS+=-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE |
626df76a | 172 | LIBS+=-lm |
67b915a5 | 173 | ifdef CONFIG_WIN32 |
3db38e87 | 174 | LIBS+=-lwinmm -lws2_32 -liphlpapi |
67b915a5 | 175 | endif |
ec530c81 FB |
176 | ifdef CONFIG_SOLARIS |
177 | LIBS+=-lsocket -lnsl -lresolv | |
0475a5ca TS |
178 | ifdef NEEDS_LIBSUNMATH |
179 | LIBS+=-lsunmath | |
180 | LDFLAGS+=-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib | |
181 | OP_CFLAGS+=-I/opt/SUNWspro/prod/include/cc | |
40293e58 | 182 | CFLAGS+=-I/opt/SUNWspro/prod/include/cc |
f72b519c | 183 | endif |
831b7825 TS |
184 | endif |
185 | ||
7ba1e619 AL |
186 | kvm.o: CFLAGS+=$(KVM_CFLAGS) |
187 | kvm-all.o: CFLAGS+=$(KVM_CFLAGS) | |
188 | ||
40293e58 | 189 | all: $(PROGS) |
626df76a | 190 | |
40293e58 | 191 | ######################################################### |
626df76a | 192 | # cpu emulator library |
57fec1fe | 193 | LIBOBJS=exec.o kqemu.o translate-all.o cpu-exec.o\ |
cf2be984 | 194 | translate.o host-utils.o |
bf6247fb | 195 | ifdef CONFIG_DYNGEN_OP |
48ffabc6 | 196 | exec.o: dyngen-opc.h |
cf2be984 BS |
197 | LIBOBJS+=op.o |
198 | endif | |
57fec1fe FB |
199 | # TCG code generator |
200 | LIBOBJS+= tcg/tcg.o tcg/tcg-dyngen.o tcg/tcg-runtime.o | |
201 | CPPFLAGS+=-I$(SRC_PATH)/tcg -I$(SRC_PATH)/tcg/$(ARCH) | |
8289b279 BS |
202 | ifeq ($(ARCH),sparc64) |
203 | CPPFLAGS+=-I$(SRC_PATH)/tcg/sparc | |
204 | endif | |
158142c2 FB |
205 | ifdef CONFIG_SOFTFLOAT |
206 | LIBOBJS+=fpu/softfloat.o | |
207 | else | |
208 | LIBOBJS+=fpu/softfloat-native.o | |
209 | endif | |
6f30fa85 | 210 | CPPFLAGS+=-I$(SRC_PATH)/fpu |
e95c8d51 | 211 | LIBOBJS+= op_helper.o helper.o |
e95c8d51 | 212 | |
b7bcbe95 | 213 | ifeq ($(TARGET_BASE_ARCH), arm) |
eaa728ee | 214 | LIBOBJS+= neon_helper.o iwmmxt_helper.o |
e6e5906b PB |
215 | endif |
216 | ||
cf6c1b16 | 217 | ifeq ($(TARGET_BASE_ARCH), alpha) |
eaa728ee | 218 | LIBOBJS+= alpha_palcode.o |
cf6c1b16 JM |
219 | endif |
220 | ||
e7daa605 | 221 | ifeq ($(TARGET_BASE_ARCH), cris) |
e7daa605 TS |
222 | LIBOBJS+= cris-dis.o |
223 | ||
224 | ifndef CONFIG_USER_ONLY | |
225 | LIBOBJS+= mmu.o | |
226 | endif | |
227 | endif | |
228 | ||
626df76a | 229 | # NOTE: the disassembler code is only needed for debugging |
5fafdf24 | 230 | LIBOBJS+=disas.o |
626df76a | 231 | ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386) |
bc51c5c9 FB |
232 | USE_I386_DIS=y |
233 | endif | |
0b0babc6 | 234 | ifeq ($(findstring x86_64, $(TARGET_ARCH) $(ARCH)),x86_64) |
bc51c5c9 FB |
235 | USE_I386_DIS=y |
236 | endif | |
237 | ifdef USE_I386_DIS | |
626df76a FB |
238 | LIBOBJS+=i386-dis.o |
239 | endif | |
240 | ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha) | |
241 | LIBOBJS+=alpha-dis.o | |
242 | endif | |
a2458627 | 243 | ifeq ($(findstring ppc, $(TARGET_BASE_ARCH) $(ARCH)),ppc) |
626df76a FB |
244 | LIBOBJS+=ppc-dis.o |
245 | endif | |
fbe4f65b | 246 | ifeq ($(findstring mips, $(TARGET_BASE_ARCH) $(ARCH)),mips) |
6af0bf9c FB |
247 | LIBOBJS+=mips-dis.o |
248 | endif | |
64b3ab24 | 249 | ifeq ($(findstring sparc, $(TARGET_BASE_ARCH) $(ARCH)),sparc) |
626df76a FB |
250 | LIBOBJS+=sparc-dis.o |
251 | endif | |
252 | ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm) | |
253 | LIBOBJS+=arm-dis.o | |
254 | endif | |
48024e4a FB |
255 | ifeq ($(findstring m68k, $(TARGET_ARCH) $(ARCH)),m68k) |
256 | LIBOBJS+=m68k-dis.o | |
257 | endif | |
fdf9b3e8 FB |
258 | ifeq ($(findstring sh4, $(TARGET_ARCH) $(ARCH)),sh4) |
259 | LIBOBJS+=sh4-dis.o | |
260 | endif | |
f54b3f92 AJ |
261 | ifeq ($(findstring hppa, $(TARGET_BASE_ARCH) $(ARCH)),hppa) |
262 | LIBOBJS+=hppa-dis.o | |
263 | endif | |
8f860bb8 TS |
264 | ifeq ($(findstring s390, $(TARGET_ARCH) $(ARCH)),s390) |
265 | LIBOBJS+=s390-dis.o | |
266 | endif | |
626df76a | 267 | |
40293e58 FB |
268 | # libqemu |
269 | ||
bf6247fb | 270 | ifdef CONFIG_DYNGEN_OP |
dd48594e | 271 | OPC_H = gen-op.h dyngen-opc.h op.h |
cf2be984 | 272 | endif |
dd48594e | 273 | |
40293e58 FB |
274 | libqemu.a: $(LIBOBJS) |
275 | rm -f $@ | |
276 | $(AR) rcs $@ $(LIBOBJS) | |
277 | ||
dd48594e PB |
278 | translate.o: translate.c cpu.h $(OPC_H) |
279 | ||
280 | translate-all.o: translate-all.c cpu.h $(OPC_H) | |
281 | ||
282 | tcg/tcg.o: cpu.h $(OPC_H) | |
40293e58 | 283 | |
dd48594e | 284 | tcg/tcg-dyngen.o: $(OPC_H) |
40293e58 | 285 | |
dd48594e | 286 | tcg/tcg-runtime.o: $(OPC_H) |
40293e58 FB |
287 | |
288 | op.h: op.o $(DYNGEN) | |
289 | $(DYNGEN) -o $@ $< | |
290 | ||
57fec1fe | 291 | dyngen-opc.h: op.o $(DYNGEN) |
40293e58 FB |
292 | $(DYNGEN) -c -o $@ $< |
293 | ||
294 | gen-op.h: op.o $(DYNGEN) | |
295 | $(DYNGEN) -g -o $@ $< | |
296 | ||
297 | op.o: op.c | |
f2bf094e | 298 | $(CC) $(OP_CFLAGS) $(CPPFLAGS) $(I386_CFLAGS) -c -o $@ $< |
40293e58 | 299 | |
8dd3dca3 AJ |
300 | machine.o: machine.c |
301 | $(CC) $(OP_CFLAGS) $(CPPFLAGS) -c -o $@ $< | |
302 | ||
40293e58 FB |
303 | # HELPER_CFLAGS is used for all the code compiled with static register |
304 | # variables | |
40293e58 | 305 | op_helper.o: op_helper.c |
eaa728ee | 306 | $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) $(I386_CFLAGS) -c -o $@ $< |
40293e58 | 307 | |
c96402b1 | 308 | cpu-exec.o: cpu-exec.c $(OPC_H) |
40293e58 FB |
309 | $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $< |
310 | ||
311 | ######################################################### | |
312 | # Linux user emulator target | |
313 | ||
314 | ifdef CONFIG_LINUX_USER | |
315 | ||
40293e58 FB |
316 | ifndef TARGET_ABI_DIR |
317 | TARGET_ABI_DIR=$(TARGET_ARCH) | |
318 | endif | |
3ebdd119 | 319 | VPATH+=:$(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR) |
40293e58 FB |
320 | CPPFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR) |
321 | ||
322 | ifdef CONFIG_STATIC | |
323 | LDFLAGS+=-static | |
324 | endif | |
325 | ||
326 | ifeq ($(ARCH),i386) | |
327 | ifdef TARGET_GPROF | |
328 | USE_I386_LD=y | |
329 | endif | |
330 | ifdef CONFIG_STATIC | |
331 | USE_I386_LD=y | |
332 | endif | |
333 | ifdef USE_I386_LD | |
334 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
335 | else | |
336 | # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object | |
337 | # that the kernel ELF loader considers as an executable. I think this | |
338 | # is the simplest way to make it self virtualizable! | |
339 | LDFLAGS+=-Wl,-shared | |
340 | endif | |
341 | endif | |
342 | ||
343 | ifeq ($(ARCH),x86_64) | |
344 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
345 | endif | |
346 | ||
347 | ifeq ($(ARCH),ppc) | |
348 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
349 | endif | |
350 | ||
810260a8 | 351 | ifeq ($(ARCH),ppc64) |
352 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
353 | endif | |
354 | ||
40293e58 FB |
355 | ifeq ($(ARCH),s390) |
356 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
357 | endif | |
358 | ||
359 | ifeq ($(ARCH),sparc) | |
360 | # -static is used to avoid g1/g3 usage by the dynamic linker | |
361 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static | |
362 | endif | |
363 | ||
364 | ifeq ($(ARCH),sparc64) | |
365 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
366 | endif | |
367 | ||
368 | ifeq ($(ARCH),alpha) | |
369 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
370 | endif | |
371 | ||
372 | ifeq ($(ARCH),ia64) | |
373 | LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
374 | endif | |
375 | ||
376 | ifeq ($(ARCH),arm) | |
377 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
378 | endif | |
379 | ||
380 | ifeq ($(ARCH),m68k) | |
381 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
382 | endif | |
383 | ||
384 | ifeq ($(ARCH),mips) | |
385 | ifeq ($(WORDS_BIGENDIAN),yes) | |
386 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
387 | else | |
388 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld | |
389 | endif | |
390 | endif | |
391 | ||
392 | ifeq ($(ARCH),mips64) | |
393 | ifeq ($(WORDS_BIGENDIAN),yes) | |
394 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
395 | else | |
396 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld | |
397 | endif | |
398 | endif | |
399 | ||
6d946cda AJ |
400 | # profiling code |
401 | ifdef TARGET_GPROF | |
402 | LDFLAGS+=-p | |
403 | CFLAGS+=-p | |
404 | endif | |
405 | ||
17e2377a | 406 | OBJS= main.o syscall.o strace.o mmap.o signal.o path.o thunk.o \ |
40293e58 FB |
407 | elfload.o linuxload.o uaccess.o |
408 | LIBS+= $(AIOLIBS) | |
409 | ifdef TARGET_HAS_BFLT | |
410 | OBJS+= flatload.o | |
411 | endif | |
412 | ifdef TARGET_HAS_ELFLOAD32 | |
413 | OBJS+= elfload32.o | |
414 | elfload32.o: elfload.c | |
415 | endif | |
416 | ||
417 | ifeq ($(TARGET_ARCH), i386) | |
418 | OBJS+= vm86.o | |
419 | endif | |
420 | ifeq ($(TARGET_ARCH), arm) | |
421 | OBJS+=nwfpe/fpa11.o nwfpe/fpa11_cpdo.o \ | |
422 | nwfpe/fpa11_cpdt.o nwfpe/fpa11_cprt.o nwfpe/fpopcode.o nwfpe/single_cpdo.o \ | |
423 | nwfpe/double_cpdo.o nwfpe/extended_cpdo.o arm-semi.o | |
424 | endif | |
425 | ifeq ($(TARGET_ARCH), m68k) | |
426 | OBJS+= m68k-sim.o m68k-semi.o | |
427 | endif | |
428 | ||
1fddef4b | 429 | ifdef CONFIG_GDBSTUB |
56aebc89 | 430 | OBJS+=gdbstub.o gdbstub-xml.o |
1fddef4b | 431 | endif |
626df76a | 432 | |
40293e58 FB |
433 | OBJS+= libqemu.a |
434 | ||
435 | # Note: this is a workaround. The real fix is to avoid compiling | |
436 | # cpu_signal_handler() in cpu-exec.c. | |
437 | signal.o: signal.c | |
438 | $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $< | |
626df76a | 439 | |
cec7d0b6 | 440 | $(QEMU_PROG): $(OBJS) ../libqemu_user.a |
40293e58 | 441 | $(CC) $(LDFLAGS) -o $@ $^ $(LIBS) |
626df76a FB |
442 | ifeq ($(ARCH),alpha) |
443 | # Mark as 32 bit binary, i. e. it will be mapped into the low 31 bit of | |
444 | # the address space (31 bit so sign extending doesn't matter) | |
445 | echo -ne '\001\000\000\000' | dd of=qemu bs=1 seek=48 count=4 conv=notrunc | |
446 | endif | |
447 | ||
40293e58 FB |
448 | endif #CONFIG_LINUX_USER |
449 | ||
450 | ######################################################### | |
451 | # Darwin user emulator target | |
452 | ||
453 | ifdef CONFIG_DARWIN_USER | |
454 | ||
455 | VPATH+=:$(SRC_PATH)/darwin-user | |
456 | CPPFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH) | |
457 | ||
458 | # Leave some space for the regular program loading zone | |
459 | LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000 | |
460 | ||
461 | LIBS+=-lmx | |
462 | ||
17e2377a | 463 | OBJS= main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o |
40293e58 FB |
464 | |
465 | OBJS+= libqemu.a | |
466 | ||
467 | ifdef CONFIG_GDBSTUB | |
56aebc89 | 468 | OBJS+=gdbstub.o gdbstub-xml.o |
40293e58 FB |
469 | endif |
470 | ||
471 | # Note: this is a workaround. The real fix is to avoid compiling | |
472 | # cpu_signal_handler() in cpu-exec.c. | |
473 | signal.o: signal.c | |
474 | $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $< | |
475 | ||
476 | $(QEMU_PROG): $(OBJS) | |
477 | $(CC) $(LDFLAGS) -o $@ $^ $(LIBS) | |
478 | ||
479 | endif #CONFIG_DARWIN_USER | |
480 | ||
84778508 BS |
481 | ######################################################### |
482 | # BSD user emulator target | |
483 | ||
484 | ifdef CONFIG_BSD_USER | |
485 | ||
486 | VPATH+=:$(SRC_PATH)/bsd-user | |
487 | CPPFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH) | |
488 | ||
489 | ifdef CONFIG_STATIC | |
490 | LDFLAGS+=-static | |
491 | endif | |
492 | ||
493 | ifeq ($(ARCH),i386) | |
494 | ifdef TARGET_GPROF | |
495 | USE_I386_LD=y | |
496 | endif | |
497 | ifdef CONFIG_STATIC | |
498 | USE_I386_LD=y | |
499 | endif | |
500 | ifdef USE_I386_LD | |
501 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
502 | else | |
503 | # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object | |
504 | # that the kernel ELF loader considers as an executable. I think this | |
505 | # is the simplest way to make it self virtualizable! | |
506 | LDFLAGS+=-Wl,-shared | |
507 | endif | |
508 | endif | |
509 | ||
510 | ifeq ($(ARCH),x86_64) | |
511 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
512 | endif | |
513 | ||
514 | ifeq ($(ARCH),ppc) | |
515 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
516 | endif | |
517 | ||
518 | ifeq ($(ARCH),ppc64) | |
519 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
520 | endif | |
521 | ||
522 | ifeq ($(ARCH),s390) | |
523 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
524 | endif | |
525 | ||
526 | ifeq ($(ARCH),sparc) | |
527 | # -static is used to avoid g1/g3 usage by the dynamic linker | |
528 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static | |
529 | endif | |
530 | ||
531 | ifeq ($(ARCH),sparc64) | |
532 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
533 | endif | |
534 | ||
535 | ifeq ($(ARCH),alpha) | |
536 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
537 | endif | |
538 | ||
539 | ifeq ($(ARCH),ia64) | |
540 | LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
541 | endif | |
542 | ||
543 | ifeq ($(ARCH),arm) | |
544 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
545 | endif | |
546 | ||
547 | ifeq ($(ARCH),m68k) | |
548 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
549 | endif | |
550 | ||
551 | ifeq ($(ARCH),mips) | |
552 | ifeq ($(WORDS_BIGENDIAN),yes) | |
553 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
554 | else | |
555 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld | |
556 | endif | |
557 | endif | |
558 | ||
559 | ifeq ($(ARCH),mips64) | |
560 | ifeq ($(WORDS_BIGENDIAN),yes) | |
561 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld | |
562 | else | |
563 | LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld | |
564 | endif | |
565 | endif | |
566 | ||
567 | OBJS= main.o bsdload.o elfload.o mmap.o path.o signal.o strace.o syscall.o | |
568 | OBJS+= uaccess.o | |
569 | ||
570 | OBJS+= libqemu.a | |
571 | ||
572 | ifdef CONFIG_GDBSTUB | |
573 | OBJS+=gdbstub.o | |
574 | endif | |
575 | ||
576 | # Note: this is a workaround. The real fix is to avoid compiling | |
577 | # cpu_signal_handler() in cpu-exec.c. | |
578 | signal.o: signal.c | |
579 | $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $< | |
580 | ||
581 | $(QEMU_PROG): $(OBJS) ../libqemu_user.a | |
582 | $(CC) $(LDFLAGS) -o $@ $^ $(LIBS) | |
583 | ||
584 | endif #CONFIG_BSD_USER | |
585 | ||
40293e58 FB |
586 | ######################################################### |
587 | # System emulator target | |
588 | ifndef CONFIG_USER_ONLY | |
589 | ||
559b90fb AL |
590 | OBJS=vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o machine.o |
591 | OBJS+=fw_cfg.o | |
7ba1e619 AL |
592 | ifdef CONFIG_KVM |
593 | OBJS+=kvm.o kvm-all.o | |
594 | endif | |
223d4670 | 595 | ifdef CONFIG_WIN32 |
40293e58 | 596 | OBJS+=block-raw-win32.o |
223d4670 | 597 | else |
559b90fb | 598 | OBJS+=block-raw-posix.o |
a3392f9b AL |
599 | endif |
600 | ||
40293e58 | 601 | LIBS+=-lz |
1d14ffa9 | 602 | ifdef CONFIG_ALSA |
1d14ffa9 FB |
603 | LIBS += -lasound |
604 | endif | |
ca9cc28c AZ |
605 | ifdef CONFIG_ESD |
606 | LIBS += -lesd | |
607 | endif | |
b8e59f18 | 608 | ifdef CONFIG_PA |
609 | LIBS += -lpulse-simple | |
610 | endif | |
1d14ffa9 | 611 | ifdef CONFIG_DSOUND |
1d14ffa9 | 612 | LIBS += -lole32 -ldxguid |
85571bc7 | 613 | endif |
102a52e4 | 614 | ifdef CONFIG_FMOD |
102a52e4 | 615 | LIBS += $(CONFIG_FMOD_LIB) |
85571bc7 | 616 | endif |
2f6a1ab0 BS |
617 | ifdef CONFIG_OSS |
618 | LIBS += $(CONFIG_OSS_LIB) | |
619 | endif | |
4fb240a4 FB |
620 | |
621 | SOUND_HW = sb16.o es1370.o | |
ca9cc28c AZ |
622 | ifdef CONFIG_AC97 |
623 | SOUND_HW += ac97.o | |
624 | endif | |
1d14ffa9 FB |
625 | ifdef CONFIG_ADLIB |
626 | SOUND_HW += fmopl.o adlib.o | |
627 | endif | |
423d65f4 AZ |
628 | ifdef CONFIG_GUS |
629 | SOUND_HW += gus.o gusemu_hal.o gusemu_mixer.o | |
630 | endif | |
cc53d26d | 631 | ifdef CONFIG_CS4231A |
632 | SOUND_HW += cs4231a.o | |
633 | endif | |
85571bc7 | 634 | |
8d5d2d4c TS |
635 | ifdef CONFIG_VNC_TLS |
636 | CPPFLAGS += $(CONFIG_VNC_TLS_CFLAGS) | |
637 | LIBS += $(CONFIG_VNC_TLS_LIBS) | |
638 | endif | |
639 | ||
fb599c9a AZ |
640 | ifdef CONFIG_BLUEZ |
641 | LIBS += $(CONFIG_BLUEZ_LIBS) | |
642 | endif | |
643 | ||
2e5d83bb | 644 | # SCSI layer |
8b17de88 | 645 | OBJS+= lsi53c895a.o esp.o |
2e5d83bb | 646 | |
a594cfbf | 647 | # USB layer |
40293e58 | 648 | OBJS+= usb-ohci.o |
a594cfbf | 649 | |
663e8e51 | 650 | # EEPROM emulation |
40293e58 | 651 | OBJS += eeprom93xx.o |
663e8e51 | 652 | |
a41b2ff2 | 653 | # PCI network cards |
40293e58 FB |
654 | OBJS += eepro100.o |
655 | OBJS += ne2000.o | |
656 | OBJS += pcnet.o | |
657 | OBJS += rtl8139.o | |
7c23b892 | 658 | OBJS += e1000.o |
a41b2ff2 | 659 | |
0b0babc6 | 660 | ifeq ($(TARGET_BASE_ARCH), i386) |
a541f297 | 661 | # Hardware support |
40293e58 FB |
662 | OBJS+= ide.o pckbd.o ps2.o vga.o $(SOUND_HW) dma.o |
663 | OBJS+= fdc.o mc146818rtc.o serial.o i8259.o i8254.o pcspk.o pc.o | |
664 | OBJS+= cirrus_vga.o apic.o parallel.o acpi.o piix_pci.o | |
665 | OBJS+= usb-uhci.o vmmouse.o vmport.o vmware_vga.o | |
b00052e4 | 666 | CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE |
67b915a5 | 667 | endif |
a2458627 | 668 | ifeq ($(TARGET_BASE_ARCH), ppc) |
b00052e4 | 669 | CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE |
3cbee15b | 670 | # shared objects |
40293e58 | 671 | OBJS+= ppc.o ide.o vga.o $(SOUND_HW) dma.o openpic.o |
3cbee15b | 672 | # PREP target |
40293e58 FB |
673 | OBJS+= pckbd.o ps2.o serial.o i8259.o i8254.o fdc.o m48t59.o mc146818rtc.o |
674 | OBJS+= prep_pci.o ppc_prep.o | |
3cbee15b | 675 | # Mac shared devices |
40293e58 | 676 | OBJS+= macio.o cuda.o adb.o mac_nvram.o mac_dbdma.o |
3cbee15b | 677 | # OldWorld PowerMac |
40293e58 | 678 | OBJS+= heathrow_pic.o grackle_pci.o ppc_oldworld.o |
3cbee15b | 679 | # NewWorld PowerMac |
40293e58 | 680 | OBJS+= unin_pci.o ppc_chrp.o |
3cbee15b | 681 | # PowerPC 4xx boards |
40293e58 | 682 | OBJS+= pflash_cfi02.o ppc4xx_devs.o ppc405_uc.o ppc405_boards.o |
a541f297 | 683 | endif |
fbe4f65b | 684 | ifeq ($(TARGET_BASE_ARCH), mips) |
c171148c | 685 | OBJS+= mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o |
4ce7ff6e AJ |
686 | OBJS+= mips_timer.o mips_int.o dma.o vga.o serial.o i8254.o i8259.o rc4030.o |
687 | OBJS+= g364fb.o jazz_led.o | |
40293e58 | 688 | OBJS+= ide.o gt64xxx.o pckbd.o ps2.o fdc.o mc146818rtc.o usb-uhci.o acpi.o ds1225y.o |
4ce7ff6e | 689 | OBJS+= piix_pci.o parallel.o cirrus_vga.o pcspk.o $(SOUND_HW) |
40293e58 FB |
690 | OBJS+= mipsnet.o |
691 | OBJS+= pflash_cfi01.o | |
4ce7ff6e | 692 | CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE |
6af0bf9c | 693 | endif |
e7daa605 | 694 | ifeq ($(TARGET_BASE_ARCH), cris) |
40293e58 | 695 | OBJS+= etraxfs.o |
48318011 | 696 | OBJS+= etraxfs_dma.o |
e62b5b13 | 697 | OBJS+= etraxfs_pic.o |
48318011 | 698 | OBJS+= etraxfs_eth.o |
40293e58 FB |
699 | OBJS+= etraxfs_timer.o |
700 | OBJS+= etraxfs_ser.o | |
e62b5b13 EI |
701 | |
702 | OBJS+= ptimer.o | |
48318011 | 703 | OBJS+= pflash_cfi02.o |
e7daa605 | 704 | endif |
64b3ab24 | 705 | ifeq ($(TARGET_BASE_ARCH), sparc) |
3475187d | 706 | ifeq ($(TARGET_ARCH), sparc64) |
40293e58 FB |
707 | OBJS+= sun4u.o ide.o pckbd.o ps2.o vga.o apb_pci.o |
708 | OBJS+= fdc.o mc146818rtc.o serial.o m48t59.o | |
709 | OBJS+= cirrus_vga.o parallel.o ptimer.o | |
3475187d | 710 | else |
40293e58 | 711 | OBJS+= sun4m.o tcx.o pcnet.o iommu.o m48t59.o slavio_intctl.o |
8b17de88 | 712 | OBJS+= slavio_timer.o slavio_serial.o slavio_misc.o fdc.o sparc32_dma.o |
40293e58 | 713 | OBJS+= cs4231.o ptimer.o eccmemctl.o sbi.o sun4c_intctl.o |
3475187d | 714 | endif |
e95c8d51 | 715 | endif |
b5ff1b31 | 716 | ifeq ($(TARGET_BASE_ARCH), arm) |
40293e58 FB |
717 | OBJS+= integratorcp.o versatilepb.o ps2.o smc91c111.o arm_pic.o arm_timer.o |
718 | OBJS+= arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o | |
719 | OBJS+= versatile_pci.o ptimer.o | |
720 | OBJS+= realview_gic.o realview.o arm_sysctl.o mpcore.o | |
721 | OBJS+= armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o | |
722 | OBJS+= pl061.o | |
723 | OBJS+= arm-semi.o | |
724 | OBJS+= pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o | |
725 | OBJS+= pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o | |
726 | OBJS+= pflash_cfi01.o gumstix.o | |
88d2c950 | 727 | OBJS+= zaurus.o ide.o serial.o nand.o ecc.o spitz.o tosa.o tc6393xb.o |
b4e3104b | 728 | OBJS+= omap1.o omap_lcdc.o omap_dma.o omap_clk.o omap_mmc.o omap_i2c.o |
afbb5194 | 729 | OBJS+= omap2.o omap_dss.o soc_dma.o |
40293e58 | 730 | OBJS+= palm.o tsc210x.o |
942ac052 | 731 | OBJS+= nseries.o blizzard.o onenand.o vga.o cbus.o tusb6010.o usb-musb.o |
58a26b47 | 732 | OBJS+= tsc2005.o bt-hci-csr.o |
40293e58 | 733 | OBJS+= mst_fpga.o mainstone.o |
24859b68 | 734 | OBJS+= musicpal.o pflash_cfi02.o |
5a1237c4 | 735 | CPPFLAGS += -DHAS_AUDIO |
b5ff1b31 | 736 | endif |
fdf9b3e8 | 737 | ifeq ($(TARGET_BASE_ARCH), sh4) |
40293e58 | 738 | OBJS+= shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o |
ffd39257 | 739 | OBJS+= sh_timer.o ptimer.o sh_serial.o sh_intc.o sm501.o serial.o |
fdf9b3e8 | 740 | endif |
0633879f | 741 | ifeq ($(TARGET_BASE_ARCH), m68k) |
40293e58 FB |
742 | OBJS+= an5206.o mcf5206.o ptimer.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o |
743 | OBJS+= m68k-semi.o dummy_m68k.o | |
0633879f | 744 | endif |
a541f297 | 745 | ifdef CONFIG_GDBSTUB |
56aebc89 | 746 | OBJS+=gdbstub.o gdbstub-xml.o |
728c9fd5 | 747 | endif |
5b0753e0 | 748 | ifdef CONFIG_COCOA |
1d14ffa9 FB |
749 | COCOA_LIBS=-F/System/Library/Frameworks -framework Cocoa -framework IOKit |
750 | ifdef CONFIG_COREAUDIO | |
751 | COCOA_LIBS+=-framework CoreAudio | |
752 | endif | |
5b0753e0 | 753 | endif |
7c1f25b4 | 754 | ifdef CONFIG_SLIRP |
6f30fa85 | 755 | CPPFLAGS+=-I$(SRC_PATH)/slirp |
626df76a FB |
756 | endif |
757 | ||
40293e58 | 758 | LIBS+=$(AIOLIBS) |
c321f673 | 759 | # specific flags are needed for non soft mmu emulator |
c321f673 | 760 | ifdef CONFIG_STATIC |
40293e58 | 761 | LDFLAGS+=-static |
de5eaa64 | 762 | endif |
83fb7adf | 763 | ifndef CONFIG_DARWIN |
11d9f695 | 764 | ifndef CONFIG_WIN32 |
ec530c81 | 765 | ifndef CONFIG_SOLARIS |
b29fe3ed | 766 | ifndef CONFIG_AIX |
40293e58 | 767 | LIBS+=-lutil |
11d9f695 | 768 | endif |
b29fe3ed | 769 | endif |
83fb7adf | 770 | endif |
ec530c81 | 771 | endif |
e3086fbf | 772 | ifdef TARGET_GPROF |
40293e58 FB |
773 | vl.o: CFLAGS+=-p |
774 | LDFLAGS+=-p | |
e3086fbf | 775 | endif |
c321f673 | 776 | |
b8076a74 | 777 | ifeq ($(ARCH),ia64) |
40293e58 | 778 | LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64.ld |
74ccb34e FB |
779 | endif |
780 | ||
1d14ffa9 FB |
781 | ifdef CONFIG_WIN32 |
782 | SDL_LIBS := $(filter-out -mwindows, $(SDL_LIBS)) -mconsole | |
783 | endif | |
784 | ||
40293e58 FB |
785 | # profiling code |
786 | ifdef TARGET_GPROF | |
787 | LDFLAGS+=-p | |
788 | main.o: CFLAGS+=-p | |
6e1b3e4d FB |
789 | endif |
790 | ||
40293e58 | 791 | $(QEMU_PROG): $(OBJS) ../libqemu_common.a libqemu.a |
8a16d273 | 792 | $(CC) $(LDFLAGS) -o $@ $^ $(LIBS) $(SDL_LIBS) $(COCOA_LIBS) $(CURSES_LIBS) $(BRLAPI_LIBS) $(VDE_LIBS) |
626df76a | 793 | |
40293e58 | 794 | endif # !CONFIG_USER_ONLY |
00a67ba1 | 795 | |
56aebc89 PB |
796 | gdbstub-xml.c: $(TARGET_XML_FILES) feature_to_c.sh |
797 | rm -f $@ | |
798 | ifeq ($(TARGET_XML_FILES),) | |
799 | echo > $@ | |
800 | else | |
801 | $(SHELL) $(SRC_PATH)/feature_to_c.sh $@ $(TARGET_XML_FILES) | |
802 | endif | |
803 | ||
626df76a | 804 | %.o: %.c |
40293e58 | 805 | $(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $< |
626df76a | 806 | |
f72b519c | 807 | %.o: %.S |
6f30fa85 | 808 | $(CC) $(CPPFLAGS) -c -o $@ $< |
f72b519c | 809 | |
626df76a | 810 | clean: |
57fec1fe FB |
811 | rm -f *.o *.a *~ $(PROGS) gen-op.h dyngen-opc.h op.h nwfpe/*.o fpu/*.o |
812 | rm -f *.d */*.d tcg/*.o | |
1e43adfc | 813 | |
5fafdf24 | 814 | install: all |
9b14bb04 | 815 | ifneq ($(PROGS),) |
6a882643 | 816 | $(INSTALL) -m 755 -s $(PROGS) "$(DESTDIR)$(bindir)" |
9b14bb04 | 817 | endif |
626df76a | 818 | |
2f96c28d JM |
819 | # Include automatically generated dependency files |
820 | -include $(wildcard *.d */*.d) |