Optionally bounce the virtio buffers
[qemu-kvm/fedora.git] / Makefile.target
blobbb24cc0ee2b681547d6b81b3c6503f96a92949c0
1 CFLAGS=
2 LDFLAGS=
4 include config.mak
6 LDFLAGS_BASE:=$(LDFLAGS)
7 TARGET_BASE_ARCH:=$(TARGET_ARCH)
8 ifeq ($(TARGET_ARCH), x86_64)
9 TARGET_BASE_ARCH:=i386
10 endif
11 ifeq ($(TARGET_ARCH), mipsn32)
12 TARGET_BASE_ARCH:=mips
13 endif
14 ifeq ($(TARGET_ARCH), mips64)
15 TARGET_BASE_ARCH:=mips
16 endif
17 ifeq ($(TARGET_ARCH), ppc64)
18 TARGET_BASE_ARCH:=ppc
19 endif
20 ifeq ($(TARGET_ARCH), ppc64h)
21 TARGET_BASE_ARCH:=ppc
22 endif
23 ifeq ($(TARGET_ARCH), ppcemb)
24 TARGET_BASE_ARCH:=ppc
25 endif
26 ifeq ($(TARGET_ARCH), sparc64)
27 TARGET_BASE_ARCH:=sparc
28 endif
29 ifeq ($(TARGET_ARCH), ia64)
30 TARGET_BASE_ARCH:=ia64
31 endif
32 TARGET_PATH=$(SRC_PATH)/target-$(TARGET_BASE_ARCH)
33 VPATH=$(SRC_PATH):$(TARGET_PATH):$(SRC_PATH)/hw
34 CPPFLAGS=-I. -I.. -I$(TARGET_PATH) -I$(SRC_PATH) -MMD -MT $@ -MP -DNEED_CPU_H
35 #CFLAGS+=-Werror
36 LIBS=
37 DYNGEN=../dyngen$(EXESUF)
38 # user emulator name
39 ifndef TARGET_ARCH2
40 TARGET_ARCH2=$(TARGET_ARCH)
41 endif
42 ifeq ($(TARGET_ARCH),arm)
43   ifeq ($(TARGET_WORDS_BIGENDIAN),yes)
44     TARGET_ARCH2=armeb
45   endif
46 endif
47 ifeq ($(TARGET_ARCH),sh4)
48   ifeq ($(TARGET_WORDS_BIGENDIAN),yes)
49     TARGET_ARCH2=sh4eb
50   endif
51 endif
52 ifeq ($(TARGET_ARCH),mips)
53   ifneq ($(TARGET_WORDS_BIGENDIAN),yes)
54     TARGET_ARCH2=mipsel
55   endif
56 endif
57 ifeq ($(TARGET_ARCH),mipsn32)
58   ifneq ($(TARGET_WORDS_BIGENDIAN),yes)
59     TARGET_ARCH2=mipsn32el
60   endif
61 endif
62 ifeq ($(TARGET_ARCH),mips64)
63   ifneq ($(TARGET_WORDS_BIGENDIAN),yes)
64     TARGET_ARCH2=mips64el
65   endif
66 endif
68 ifdef CONFIG_USER_ONLY
69 # user emulator name
70 QEMU_PROG=qemu-$(TARGET_ARCH2)
71 else
72 # system emulator name
73 ifeq ($(TARGET_ARCH), i386)
74 QEMU_PROG=qemu$(EXESUF)
75 else
76 QEMU_PROG=qemu-system-$(TARGET_ARCH2)$(EXESUF)
77 endif
78 endif
80 PROGS=$(QEMU_PROG)
82 # We require -O2 to avoid the stack setup prologue in EXIT_TB
83 OP_CFLAGS := -O2 -g -fno-strict-aliasing
84 OP_CFLAGS += -Wall -Wundef -Wendif-labels -Wwrite-strings
86 # cc-option
87 # Usage: OP_CFLAGS+=$(call cc-option, -falign-functions=0, -malign-functions=0)
89 cc-option = $(shell if $(CC) $(OP_CFLAGS) $(1) -S -o /dev/null -xc /dev/null \
90               > /dev/null 2>&1; then echo "$(1)"; else echo "$(2)"; fi ;)
92 OP_CFLAGS+=$(call cc-option, -fno-reorder-blocks, "")
93 OP_CFLAGS+=$(call cc-option, -fno-gcse, "")
94 OP_CFLAGS+=$(call cc-option, -fno-tree-ch, "")
95 OP_CFLAGS+=$(call cc-option, -fno-optimize-sibling-calls, "")
96 OP_CFLAGS+=$(call cc-option, -fno-crossjumping, "")
97 OP_CFLAGS+=$(call cc-option, -fno-align-labels, "")
98 OP_CFLAGS+=$(call cc-option, -fno-align-jumps, "")
99 OP_CFLAGS+=$(call cc-option, -fno-align-functions, $(call cc-option, -malign-functions=0, ""))
100 OP_CFLAGS+=$(call cc-option, -fno-section-anchors, "")
102 HELPER_CFLAGS=
104 ifeq ($(ARCH),i386)
105 HELPER_CFLAGS+=-fomit-frame-pointer
106 OP_CFLAGS+=-mpreferred-stack-boundary=2 -fomit-frame-pointer
107 # op.c and helper.c need this on 32-bit x86 system to avoid
108 # a compiler spill error. This can probably go away
109 # once the SSE ops have been converted to TCG
110 ifeq ($(HAVE_GT_GCC_3_3), true)
111 I386_CFLAGS=-march=i586 -mtune=i686
112 endif
113 endif
115 ifeq ($(ARCH),ppc)
116 CPPFLAGS+= -D__powerpc__
117 OP_CFLAGS+= -mlongcall
118 endif
120 ifeq ($(ARCH),sparc)
121   CFLAGS+=-ffixed-g2 -ffixed-g3
122   OP_CFLAGS+=-fno-delayed-branch -ffixed-i0
123   ifeq ($(CONFIG_SOLARIS),yes)
124     OP_CFLAGS+=-fno-omit-frame-pointer
125   else
126     CFLAGS+=-ffixed-g1 -ffixed-g6
127     HELPER_CFLAGS+=-ffixed-i0
128   endif
129 endif
131 ifeq ($(ARCH),sparc64)
132   OP_CFLAGS+=-mcpu=ultrasparc -m64 -fno-delayed-branch -ffixed-i0
133   ifneq ($(CONFIG_SOLARIS),yes)
134     CFLAGS+=-ffixed-g5 -ffixed-g6 -ffixed-g7
135     OP_CFLAGS+=-ffixed-g5 -ffixed-g6 -ffixed-g7
136   else
137     CFLAGS+=-ffixed-g1 -ffixed-g4 -ffixed-g5 -ffixed-g7
138   endif
139 endif
141 ifeq ($(ARCH),alpha)
142 # -msmall-data is not used for OP_CFLAGS because we want two-instruction
143 # relocations for the constant constructions
144 # Ensure there's only a single GP
145 CFLAGS+=-msmall-data
146 endif
148 ifeq ($(ARCH),hppa)
149 OP_CFLAGS=-O1 -fno-delayed-branch
150 BASE_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
151 endif
153 ifeq ($(ARCH),ia64)
154 CFLAGS+=-mno-sdata
155 OP_CFLAGS+=-mno-sdata
156 endif
158 ifeq ($(ARCH),arm)
159 OP_CFLAGS+=-mno-sched-prolog -fno-omit-frame-pointer
160 endif
162 ifeq ($(ARCH),m68k)
163 OP_CFLAGS+=-fomit-frame-pointer
164 endif
166 ifeq ($(ARCH),mips)
167 OP_CFLAGS+=-mabi=32 -G0 -fno-PIC -mno-abicalls -fomit-frame-pointer -fno-delayed-branch -Wa,-O0
168 endif
170 ifeq ($(ARCH),mips64)
171 OP_CFLAGS+=-mabi=n32 -G0 -fno-PIC -mno-abicalls -fomit-frame-pointer -fno-delayed-branch -Wa,-O0
172 endif
174 CFLAGS+=$(OS_CFLAGS) $(ARCH_CFLAGS)
175 LDFLAGS+=$(OS_LDFLAGS) $(ARCH_LDFLAGS)
176 OP_CFLAGS+=$(OS_CFLAGS) $(ARCH_CFLAGS)
178 CPPFLAGS+=-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D__user=
179 LIBS+=-lm
180 ifdef CONFIG_WIN32
181 LIBS+=-lwinmm -lws2_32 -liphlpapi
182 endif
183 ifdef CONFIG_SOLARIS
184 LIBS+=-lsocket -lnsl -lresolv
185 ifdef NEEDS_LIBSUNMATH
186 LIBS+=-lsunmath
187 LDFLAGS+=-L/opt/SUNWspro/prod/lib -R/opt/SUNWspro/prod/lib
188 OP_CFLAGS+=-I/opt/SUNWspro/prod/include/cc
189 CFLAGS+=-I/opt/SUNWspro/prod/include/cc
190 endif
191 endif
193 kvm.o: CFLAGS+=$(KVM_CFLAGS)
194 kvm-all.o: CFLAGS+=$(KVM_CFLAGS)
196 all: $(PROGS)
198 #########################################################
199 # cpu emulator library
200 LIBOBJS=exec.o kqemu.o cpu-exec.o host-utils.o
202 ifeq ($(NO_CPU_EMULATION), 1)
203 LIBOBJS+=fake-exec.o
204 else
205 LIBOBJS+= translate-all.o translate.o
206 endif
207 ifdef CONFIG_DYNGEN_OP
208 exec.o: dyngen-opc.h
209 LIBOBJS+=op.o
210 endif
211 # TCG code generator
212 ifneq ($(TARGET_ARCH), ia64)
213 LIBOBJS+= tcg/tcg.o tcg/tcg-dyngen.o tcg/tcg-runtime.o
214 CPPFLAGS+=-I$(SRC_PATH)/tcg -I$(SRC_PATH)/tcg/$(ARCH)
215 endif
216 ifeq ($(ARCH),sparc64)
217 CPPFLAGS+=-I$(SRC_PATH)/tcg/sparc
218 endif
220 ifeq ($(USE_KVM), 1)
221 LIBOBJS+=qemu-kvm.o
222 endif
223 ifdef CONFIG_SOFTFLOAT
224 LIBOBJS+=fpu/softfloat.o
225 else
226 LIBOBJS+=fpu/softfloat-native.o
227 endif
228 CPPFLAGS+=-I$(SRC_PATH)/fpu
230 ifeq ($(TARGET_ARCH), i386)
231 LIBOBJS+=helper.o
232 ifeq ($(USE_KVM), 1)
233 LIBOBJS+=qemu-kvm-x86.o kvm-tpr-opt.o
234 LIBOBJS+=qemu-kvm-helper.o
235 endif
236 endif
238 ifeq ($(TARGET_ARCH), x86_64)
239 LIBOBJS+=helper.o
240 ifeq ($(USE_KVM), 1)
241 LIBOBJS+=qemu-kvm-x86.o kvm-tpr-opt.o
242 LIBOBJS+=qemu-kvm-helper.o
243 endif
244 endif
246 ifeq ($(TARGET_BASE_ARCH), ppc)
247 ifeq ($(USE_KVM), 1)
248 LIBOBJS+= qemu-kvm-powerpc.o
249 endif
250 endif
252 LIBOBJS+= op_helper.o
254 ifneq ($(TARGET_ARCH), ia64)
255 LIBOBJS+= helper.o
256 endif
258 ifeq ($(TARGET_BASE_ARCH), arm)
259 LIBOBJS+= neon_helper.o iwmmxt_helper.o
260 endif
262 ifeq ($(TARGET_BASE_ARCH), alpha)
263 LIBOBJS+= alpha_palcode.o
264 endif
266 ifeq ($(TARGET_BASE_ARCH), ia64)
267 LIBOBJS+=op_helper.o firmware.o
268 ifeq ($(USE_KVM), 1)
269 LIBOBJS+=qemu-kvm-ia64.o
270 endif
271 endif
273 ifeq ($(TARGET_BASE_ARCH), cris)
274 LIBOBJS+= cris-dis.o
276 ifndef CONFIG_USER_ONLY
277 LIBOBJS+= mmu.o
278 endif
279 endif
282 # NOTE: the disassembler code is only needed for debugging
283 LIBOBJS+=disas.o
284 ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386)
285 USE_I386_DIS=y
286 endif
287 ifeq ($(findstring x86_64, $(TARGET_ARCH) $(ARCH)),x86_64)
288 USE_I386_DIS=y
289 endif
290 ifdef USE_I386_DIS
291 LIBOBJS+=i386-dis.o
292 endif
293 ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha)
294 LIBOBJS+=alpha-dis.o
295 endif
296 ifeq ($(findstring ppc, $(TARGET_BASE_ARCH) $(ARCH)),ppc)
297 LIBOBJS+=ppc-dis.o
298 endif
299 ifeq ($(findstring mips, $(TARGET_BASE_ARCH) $(ARCH)),mips)
300 LIBOBJS+=mips-dis.o
301 endif
302 ifeq ($(findstring sparc, $(TARGET_BASE_ARCH) $(ARCH)),sparc)
303 LIBOBJS+=sparc-dis.o
304 endif
305 ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
306 LIBOBJS+=arm-dis.o
307 endif
308 ifeq ($(findstring m68k, $(TARGET_ARCH) $(ARCH)),m68k)
309 LIBOBJS+=m68k-dis.o
310 endif
311 ifeq ($(findstring sh4, $(TARGET_ARCH) $(ARCH)),sh4)
312 LIBOBJS+=sh4-dis.o
313 endif
314 ifeq ($(findstring hppa, $(TARGET_BASE_ARCH) $(ARCH)),hppa)
315 LIBOBJS+=hppa-dis.o
316 endif
317 ifeq ($(findstring s390, $(TARGET_ARCH) $(ARCH)),s390)
318 LIBOBJS+=s390-dis.o
319 endif
321 # libqemu
323 ifdef CONFIG_DYNGEN_OP
324 OPC_H = gen-op.h dyngen-opc.h op.h
325 endif
327 libqemu.a: $(LIBOBJS)
328         rm -f $@
329         $(AR) rcs $@ $(LIBOBJS)
331 translate.o: translate.c cpu.h $(OPC_H)
333 translate-all.o: translate-all.c cpu.h $(OPC_H)
335 tcg/tcg.o: cpu.h $(OPC_H)
337 tcg/tcg-dyngen.o: $(OPC_H)
339 tcg/tcg-runtime.o: $(OPC_H)
341 op.h: op.o $(DYNGEN)
342         $(DYNGEN) -o $@ $<
344 dyngen-opc.h: op.o $(DYNGEN)
345         $(DYNGEN) -c -o $@ $<
347 gen-op.h: op.o $(DYNGEN)
348         $(DYNGEN) -g -o $@ $<
350 op.o: op.c
351         $(CC) $(OP_CFLAGS) $(CPPFLAGS) $(I386_CFLAGS) -c -o $@ $<
353 machine.o: machine.c
354         $(CC) $(OP_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
356 # HELPER_CFLAGS is used for all the code compiled with static register
357 # variables
358 op_helper.o: op_helper.c
359         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) $(I386_CFLAGS) -c -o $@ $<
361 cpu-exec.o: cpu-exec.c $(OPC_H)
362         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
364 qemu-kvm-helper.o: qemu-kvm-helper.c
365         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
367 #########################################################
368 # Linux user emulator target
370 ifdef CONFIG_LINUX_USER
372 ifndef TARGET_ABI_DIR
373   TARGET_ABI_DIR=$(TARGET_ARCH)
374 endif
375 VPATH+=:$(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
376 CPPFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
378 ifdef CONFIG_STATIC
379 LDFLAGS+=-static
380 endif
382 ifeq ($(ARCH),i386)
383 ifdef TARGET_GPROF
384 USE_I386_LD=y
385 endif
386 ifdef CONFIG_STATIC
387 USE_I386_LD=y
388 endif
389 ifdef USE_I386_LD
390 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
391 else
392 # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
393 # that the kernel ELF loader considers as an executable. I think this
394 # is the simplest way to make it self virtualizable!
395 LDFLAGS+=-Wl,-shared
396 endif
397 endif
399 ifeq ($(ARCH),x86_64)
400 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
401 endif
403 ifeq ($(ARCH),ppc)
404 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
405 endif
407 ifeq ($(ARCH),ppc64)
408 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
409 endif
411 ifeq ($(ARCH),s390)
412 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
413 endif
415 ifeq ($(ARCH),sparc)
416 # -static is used to avoid g1/g3 usage by the dynamic linker    
417 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
418 endif
420 ifeq ($(ARCH),sparc64)
421 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
422 endif
424 ifeq ($(ARCH),alpha)
425 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
426 endif
428 ifeq ($(ARCH),ia64)
429 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
430 endif
432 ifeq ($(ARCH),arm)
433 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
434 endif
436 ifeq ($(ARCH),m68k)
437 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
438 endif
440 ifeq ($(ARCH),mips)
441 ifeq ($(WORDS_BIGENDIAN),yes)
442 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
443 else
444 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
445 endif
446 endif
448 ifeq ($(ARCH),mips64)
449 ifeq ($(WORDS_BIGENDIAN),yes)
450 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
451 else
452 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
453 endif
454 endif
456 # profiling code
457 ifdef TARGET_GPROF
458 LDFLAGS+=-p
459 CFLAGS+=-p
460 endif
462 OBJS= main.o syscall.o strace.o mmap.o signal.o path.o thunk.o \
463       elfload.o linuxload.o uaccess.o
464 LIBS+= $(AIOLIBS)
465 ifdef TARGET_HAS_BFLT
466 OBJS+= flatload.o
467 endif
468 ifdef TARGET_HAS_ELFLOAD32
469 OBJS+= elfload32.o
470 elfload32.o: elfload.c
471 endif
473 ifeq ($(TARGET_ARCH), i386)
474 OBJS+= vm86.o
475 endif
476 ifeq ($(TARGET_ARCH), arm)
477 OBJS+=nwfpe/fpa11.o nwfpe/fpa11_cpdo.o \
478 nwfpe/fpa11_cpdt.o nwfpe/fpa11_cprt.o nwfpe/fpopcode.o nwfpe/single_cpdo.o \
479  nwfpe/double_cpdo.o nwfpe/extended_cpdo.o arm-semi.o
480 endif
481 ifeq ($(TARGET_ARCH), m68k)
482 OBJS+= m68k-sim.o m68k-semi.o
483 endif
485 ifdef CONFIG_GDBSTUB
486 OBJS+=gdbstub.o gdbstub-xml.o
487 endif
489 OBJS+= libqemu.a
491 # Note: this is a workaround. The real fix is to avoid compiling
492 # cpu_signal_handler() in cpu-exec.c.
493 signal.o: signal.c
494         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
496 $(QEMU_PROG): $(OBJS) ../libqemu_user.a
497         $(CC) $(LDFLAGS) -o $@ $^  $(LIBS)
498 ifeq ($(ARCH),alpha)
499 # Mark as 32 bit binary, i. e. it will be mapped into the low 31 bit of
500 # the address space (31 bit so sign extending doesn't matter)
501         echo -ne '\001\000\000\000' | dd of=qemu bs=1 seek=48 count=4 conv=notrunc
502 endif
504 endif #CONFIG_LINUX_USER
506 #########################################################
507 # Darwin user emulator target
509 ifdef CONFIG_DARWIN_USER
511 VPATH+=:$(SRC_PATH)/darwin-user
512 CPPFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
514 # Leave some space for the regular program loading zone
515 LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000
517 LIBS+=-lmx
519 OBJS= main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o
521 OBJS+= libqemu.a
523 ifdef CONFIG_GDBSTUB
524 OBJS+=gdbstub.o gdbstub-xml.o
525 endif
527 # Note: this is a workaround. The real fix is to avoid compiling
528 # cpu_signal_handler() in cpu-exec.c.
529 signal.o: signal.c
530         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
532 $(QEMU_PROG): $(OBJS)
533         $(CC) $(LDFLAGS) -o $@ $^  $(LIBS)
535 endif #CONFIG_DARWIN_USER
537 #########################################################
538 # BSD user emulator target
540 ifdef CONFIG_BSD_USER
542 VPATH+=:$(SRC_PATH)/bsd-user
543 CPPFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH)
545 ifdef CONFIG_STATIC
546 LDFLAGS+=-static
547 endif
549 ifeq ($(ARCH),i386)
550 ifdef TARGET_GPROF
551 USE_I386_LD=y
552 endif
553 ifdef CONFIG_STATIC
554 USE_I386_LD=y
555 endif
556 ifdef USE_I386_LD
557 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
558 else
559 # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
560 # that the kernel ELF loader considers as an executable. I think this
561 # is the simplest way to make it self virtualizable!
562 LDFLAGS+=-Wl,-shared
563 endif
564 endif
566 ifeq ($(ARCH),x86_64)
567 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
568 endif
570 ifeq ($(ARCH),ppc)
571 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
572 endif
574 ifeq ($(ARCH),ppc64)
575 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
576 endif
578 ifeq ($(ARCH),s390)
579 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
580 endif
582 ifeq ($(ARCH),sparc)
583 # -static is used to avoid g1/g3 usage by the dynamic linker
584 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
585 endif
587 ifeq ($(ARCH),sparc64)
588 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
589 endif
591 ifeq ($(ARCH),alpha)
592 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
593 endif
595 ifeq ($(ARCH),ia64)
596 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
597 endif
599 ifeq ($(ARCH),arm)
600 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
601 endif
603 ifeq ($(ARCH),m68k)
604 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
605 endif
607 ifeq ($(ARCH),mips)
608 ifeq ($(WORDS_BIGENDIAN),yes)
609 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
610 else
611 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
612 endif
613 endif
615 ifeq ($(ARCH),mips64)
616 ifeq ($(WORDS_BIGENDIAN),yes)
617 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
618 else
619 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
620 endif
621 endif
623 OBJS= main.o bsdload.o elfload.o mmap.o path.o signal.o strace.o syscall.o
624 OBJS+= uaccess.o
626 OBJS+= libqemu.a
628 ifdef CONFIG_GDBSTUB
629 OBJS+=gdbstub.o
630 endif
632 # Note: this is a workaround. The real fix is to avoid compiling
633 # cpu_signal_handler() in cpu-exec.c.
634 signal.o: signal.c
635         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
637 $(QEMU_PROG): $(OBJS) ../libqemu_user.a
638         $(CC) $(LDFLAGS) -o $@ $^  $(LIBS)
640 endif #CONFIG_BSD_USER
642 #########################################################
643 # System emulator target
644 ifndef CONFIG_USER_ONLY
646 OBJS=vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o machine.o
647 OBJS+=fw_cfg.o
648 OBJS+=net.o
649 ifdef CONFIG_KVM
650 OBJS+=kvm.o kvm-all.o
651 endif
652 ifdef CONFIG_WIN32
653 OBJS+=block-raw-win32.o
654 else
655 OBJS+=block-raw-posix.o
656 endif
658 ifdef CONFIG_AIO
659 OBJS+=compatfd.o
660 endif
662 LIBS+=-lz
663 ifdef CONFIG_ALSA
664 LIBS += -lasound
665 endif
666 ifdef CONFIG_ESD
667 LIBS += -lesd
668 endif
669 ifdef CONFIG_PA
670 LIBS += -lpulse-simple
671 endif
672 ifdef CONFIG_DSOUND
673 LIBS += -lole32 -ldxguid
674 endif
675 ifdef CONFIG_FMOD
676 LIBS += $(CONFIG_FMOD_LIB)
677 endif
678 ifdef CONFIG_OSS
679 LIBS += $(CONFIG_OSS_LIB)
680 endif
682 SOUND_HW = sb16.o es1370.o
683 ifdef CONFIG_AC97
684 SOUND_HW += ac97.o
685 endif
686 ifdef CONFIG_ADLIB
687 SOUND_HW += fmopl.o adlib.o
688 endif
689 ifdef CONFIG_GUS
690 SOUND_HW += gus.o gusemu_hal.o gusemu_mixer.o
691 endif
692 ifdef CONFIG_CS4231A
693 SOUND_HW += cs4231a.o
694 endif
696 ifdef CONFIG_KVM_KERNEL_INC
697 CFLAGS += -I $(CONFIG_KVM_KERNEL_INC)
698 LIBS += -lkvm
699 DEPLIBS += ../libkvm/libkvm.a
700 endif
702 ifdef CONFIG_VNC_TLS
703 CPPFLAGS += $(CONFIG_VNC_TLS_CFLAGS)
704 LIBS += $(CONFIG_VNC_TLS_LIBS)
705 endif
707 ifdef CONFIG_BLUEZ
708 LIBS += $(CONFIG_BLUEZ_LIBS)
709 endif
711 ifdef CONFIG_LIBFDT
712 LIBS += -lfdt
713 DEPLIBS += ../libfdt/libfdt.a
714 endif
716 # SCSI layer
717 OBJS+= lsi53c895a.o esp.o
719 # USB layer
720 OBJS+= usb-ohci.o
722 # EEPROM emulation
723 OBJS += eeprom93xx.o
725 # PCI network cards
726 OBJS += eepro100.o
727 OBJS += ne2000.o
728 OBJS += pcnet.o
729 OBJS += rtl8139.o
730 OBJS += e1000.o
732 # virtio devices
733 OBJS += virtio.o virtio-net.o virtio-blk.o virtio-balloon.o
735 OBJS += device-hotplug.o
737 ifeq ($(USE_KVM_DEVICE_ASSIGNMENT), 1)
738 OBJS+= device-assignment.o
739 endif
741 ifeq ($(TARGET_BASE_ARCH), i386)
742 # Hardware support
743 OBJS+= ide.o pckbd.o ps2.o vga.o $(SOUND_HW) dma.o
744 OBJS+= fdc.o mc146818rtc.o serial.o i8259.o i8254.o pcspk.o pc.o
745 OBJS+= cirrus_vga.o apic.o parallel.o acpi.o piix_pci.o
746 OBJS+= usb-uhci.o vmmouse.o vmport.o vmware_vga.o extboot.o
747 ifeq ($(USE_KVM_PIT), 1)
748 OBJS+= i8254-kvm.o
749 endif
750 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
751 endif
752 ifeq ($(TARGET_BASE_ARCH), ia64)
753 # Hardware support
754 OBJS+= ide.o pckbd.o ps2.o vga.o $(SOUND_HW) dma.o $(AUDIODRV)
755 OBJS+= fdc.o mc146818rtc.o serial.o i8259.o ipf.o
756 OBJS+= cirrus_vga.o parallel.o acpi.o piix_pci.o
757 OBJS+= usb-uhci.o smbus_eeprom.o
758 endif
759 ifeq ($(TARGET_BASE_ARCH), ppc)
760 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
761 # shared objects
762 OBJS+= ppc.o ide.o vga.o $(SOUND_HW) dma.o openpic.o
763 OBJS+= cirrus_vga.o
764 # PREP target
765 OBJS+= pckbd.o ps2.o serial.o i8259.o i8254.o fdc.o m48t59.o mc146818rtc.o
766 OBJS+= prep_pci.o ppc_prep.o
767 # Mac shared devices
768 OBJS+= macio.o cuda.o adb.o mac_nvram.o mac_dbdma.o
769 # OldWorld PowerMac
770 OBJS+= heathrow_pic.o grackle_pci.o ppc_oldworld.o
771 # NewWorld PowerMac
772 OBJS+= unin_pci.o ppc_chrp.o
773 # PowerPC 4xx boards
774 OBJS+= pflash_cfi02.o ppc4xx_devs.o ppc405_uc.o ppc405_boards.o
775 OBJS+= ppc440.o ppc440_bamboo.o device_tree.o
776 endif
777 ifeq ($(TARGET_BASE_ARCH), mips)
778 OBJS+= mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o
779 OBJS+= mips_timer.o mips_int.o dma.o vga.o serial.o i8254.o i8259.o rc4030.o
780 OBJS+= g364fb.o jazz_led.o
781 OBJS+= ide.o gt64xxx.o pckbd.o ps2.o fdc.o mc146818rtc.o usb-uhci.o acpi.o ds1225y.o
782 OBJS+= piix_pci.o parallel.o cirrus_vga.o pcspk.o $(SOUND_HW)
783 OBJS+= mipsnet.o
784 OBJS+= pflash_cfi01.o
785 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
786 endif
787 ifeq ($(TARGET_BASE_ARCH), cris)
788 OBJS+= etraxfs.o
789 OBJS+= etraxfs_dma.o
790 OBJS+= etraxfs_pic.o
791 OBJS+= etraxfs_eth.o
792 OBJS+= etraxfs_timer.o
793 OBJS+= etraxfs_ser.o
795 OBJS+= ptimer.o
796 OBJS+= pflash_cfi02.o
797 endif
798 ifeq ($(TARGET_BASE_ARCH), sparc)
799 ifeq ($(TARGET_ARCH), sparc64)
800 OBJS+= sun4u.o ide.o pckbd.o ps2.o vga.o apb_pci.o
801 OBJS+= fdc.o mc146818rtc.o serial.o m48t59.o
802 OBJS+= cirrus_vga.o parallel.o ptimer.o
803 else
804 OBJS+= sun4m.o tcx.o pcnet.o iommu.o m48t59.o slavio_intctl.o
805 OBJS+= slavio_timer.o slavio_serial.o slavio_misc.o fdc.o sparc32_dma.o
806 OBJS+= cs4231.o ptimer.o eccmemctl.o sbi.o sun4c_intctl.o
807 endif
808 endif
809 ifeq ($(TARGET_BASE_ARCH), arm)
810 OBJS+= integratorcp.o versatilepb.o ps2.o smc91c111.o arm_pic.o arm_timer.o
811 OBJS+= arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o
812 OBJS+= versatile_pci.o ptimer.o
813 OBJS+= realview_gic.o realview.o arm_sysctl.o mpcore.o
814 OBJS+= armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o
815 OBJS+= pl061.o
816 OBJS+= arm-semi.o
817 OBJS+= pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o
818 OBJS+= pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o
819 OBJS+= pflash_cfi01.o gumstix.o
820 OBJS+= zaurus.o ide.o serial.o nand.o ecc.o spitz.o tosa.o tc6393xb.o
821 OBJS+= omap1.o omap_lcdc.o omap_dma.o omap_clk.o omap_mmc.o omap_i2c.o
822 OBJS+= omap2.o omap_dss.o soc_dma.o
823 OBJS+= palm.o tsc210x.o
824 OBJS+= nseries.o blizzard.o onenand.o vga.o cbus.o tusb6010.o usb-musb.o
825 OBJS+= tsc2005.o bt-hci-csr.o
826 OBJS+= mst_fpga.o mainstone.o
827 OBJS+= musicpal.o pflash_cfi02.o
828 CPPFLAGS += -DHAS_AUDIO
829 endif
830 ifeq ($(TARGET_BASE_ARCH), sh4)
831 OBJS+= shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
832 OBJS+= sh_timer.o ptimer.o sh_serial.o sh_intc.o sm501.o serial.o
833 endif
834 ifeq ($(TARGET_BASE_ARCH), m68k)
835 OBJS+= an5206.o mcf5206.o ptimer.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o
836 OBJS+= m68k-semi.o dummy_m68k.o
837 endif
838 ifdef CONFIG_GDBSTUB
839 OBJS+=gdbstub.o gdbstub-xml.o
840 endif
841 ifdef CONFIG_COCOA
842 COCOA_LIBS=-F/System/Library/Frameworks -framework Cocoa -framework IOKit
843 ifdef CONFIG_COREAUDIO
844 COCOA_LIBS+=-framework CoreAudio
845 endif
846 endif
847 ifdef CONFIG_SLIRP
848 CPPFLAGS+=-I$(SRC_PATH)/slirp
849 endif
851 LIBS+=$(AIOLIBS)
852 # specific flags are needed for non soft mmu emulator
853 ifdef CONFIG_STATIC
854 LDFLAGS+=-static
855 endif
856 ifndef CONFIG_DARWIN
857 ifndef CONFIG_WIN32
858 ifndef CONFIG_SOLARIS
859 ifndef CONFIG_AIX
860 LIBS+=-lutil
861 endif
862 endif
863 endif
864 endif
865 ifdef TARGET_GPROF
866 vl.o: CFLAGS+=-p
867 LDFLAGS+=-p
868 endif
870 ifeq ($(ARCH),ia64)
871 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64.ld
872 endif
874 ifdef CONFIG_WIN32
875 SDL_LIBS := $(filter-out -mwindows, $(SDL_LIBS)) -mconsole
876 endif
878 # profiling code
879 ifdef TARGET_GPROF
880 LDFLAGS+=-p
881 main.o: CFLAGS+=-p
882 endif
883 ifeq ($(TARGET_ARCH), ia64)
884 firmware.o: firmware.c
885         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
886 endif
888 $(QEMU_PROG): $(OBJS) ../libqemu_common.a libqemu.a $(DEPLIBS)
889         $(CC) $(LDFLAGS) -o $@ $^ $(LIBS) $(SDL_LIBS) $(COCOA_LIBS) $(CURSES_LIBS) $(BRLAPI_LIBS) $(VDE_LIBS)
891 endif # !CONFIG_USER_ONLY
893 gdbstub-xml.c: $(TARGET_XML_FILES) feature_to_c.sh
894         rm -f $@
895 ifeq ($(TARGET_XML_FILES),)
896         echo > $@
897 else
898         $(SHELL) $(SRC_PATH)/feature_to_c.sh $@ $(TARGET_XML_FILES)
899 endif
901 %.o: %.c
902         $(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
904 %.o: %.S
905         $(CC) $(CPPFLAGS) -c -o $@ $<
907 clean:
908         rm -f *.o *.a *~ $(PROGS) gen-op.h dyngen-opc.h op.h nwfpe/*.o fpu/*.o
909         rm -f *.d */*.d tcg/*.o
911 install: all
912 ifneq ($(PROGS),)
913         $(INSTALL) -m 755 $(PROGS) "$(DESTDIR)$(bindir)"
914 endif
916 # Include automatically generated dependency files
917 -include $(wildcard *.d */*.d)