Fix off-by-one generating vmdk backing files
[qemu-kvm/fedora.git] / Makefile.target
blobf8587143cbaef246b0cf18be8ff34c1c9941dbd9
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 all: $(PROGS)
195 #########################################################
196 # cpu emulator library
197 LIBOBJS=exec.o kqemu.o cpu-exec.o host-utils.o
199 ifeq ($(NO_CPU_EMULATION), 1)
200 LIBOBJS+=fake-exec.o
201 else
202 LIBOBJS+= translate-all.o translate.o
203 endif
204 ifdef CONFIG_DYNGEN_OP
205 LIBOBJS+=op.o
206 endif
207 # TCG code generator
208 ifneq ($(TARGET_ARCH), ia64)
209 LIBOBJS+= tcg/tcg.o tcg/tcg-dyngen.o tcg/tcg-runtime.o
210 CPPFLAGS+=-I$(SRC_PATH)/tcg -I$(SRC_PATH)/tcg/$(ARCH)
211 endif
212 ifeq ($(ARCH),sparc64)
213 CPPFLAGS+=-I$(SRC_PATH)/tcg/sparc
214 endif
216 ifeq ($(USE_KVM), 1)
217 LIBOBJS+=qemu-kvm.o
218 endif
219 ifdef CONFIG_SOFTFLOAT
220 LIBOBJS+=fpu/softfloat.o
221 else
222 LIBOBJS+=fpu/softfloat-native.o
223 endif
224 CPPFLAGS+=-I$(SRC_PATH)/fpu
226 ifeq ($(TARGET_ARCH), i386)
227 LIBOBJS+=helper.o
228 ifeq ($(USE_KVM), 1)
229 LIBOBJS+=qemu-kvm-x86.o kvm-tpr-opt.o
230 LIBOBJS+=qemu-kvm-helper.o
231 endif
232 endif
234 ifeq ($(TARGET_ARCH), x86_64)
235 LIBOBJS+=helper.o
236 ifeq ($(USE_KVM), 1)
237 LIBOBJS+=qemu-kvm-x86.o kvm-tpr-opt.o
238 LIBOBJS+=qemu-kvm-helper.o
239 endif
240 endif
242 ifeq ($(TARGET_BASE_ARCH), ppc)
243 ifeq ($(USE_KVM), 1)
244 LIBOBJS+= qemu-kvm-powerpc.o
245 endif
246 endif
248 LIBOBJS+= op_helper.o
250 ifneq ($(TARGET_ARCH), ia64)
251 LIBOBJS+= helper.o
252 endif
254 ifeq ($(TARGET_BASE_ARCH), arm)
255 LIBOBJS+= neon_helper.o iwmmxt_helper.o
256 endif
258 ifeq ($(TARGET_BASE_ARCH), alpha)
259 LIBOBJS+= alpha_palcode.o
260 endif
262 ifeq ($(TARGET_BASE_ARCH), ia64)
263 LIBOBJS+=op_helper.o firmware.o
264 ifeq ($(USE_KVM), 1)
265 LIBOBJS+=qemu-kvm-ia64.o
266 endif
267 endif
269 ifeq ($(TARGET_BASE_ARCH), cris)
270 LIBOBJS+= cris-dis.o
272 ifndef CONFIG_USER_ONLY
273 LIBOBJS+= mmu.o
274 endif
275 endif
278 # NOTE: the disassembler code is only needed for debugging
279 LIBOBJS+=disas.o
280 ifeq ($(findstring i386, $(TARGET_ARCH) $(ARCH)),i386)
281 USE_I386_DIS=y
282 endif
283 ifeq ($(findstring x86_64, $(TARGET_ARCH) $(ARCH)),x86_64)
284 USE_I386_DIS=y
285 endif
286 ifdef USE_I386_DIS
287 LIBOBJS+=i386-dis.o
288 endif
289 ifeq ($(findstring alpha, $(TARGET_ARCH) $(ARCH)),alpha)
290 LIBOBJS+=alpha-dis.o
291 endif
292 ifeq ($(findstring ppc, $(TARGET_BASE_ARCH) $(ARCH)),ppc)
293 LIBOBJS+=ppc-dis.o
294 endif
295 ifeq ($(findstring mips, $(TARGET_BASE_ARCH) $(ARCH)),mips)
296 LIBOBJS+=mips-dis.o
297 endif
298 ifeq ($(findstring sparc, $(TARGET_BASE_ARCH) $(ARCH)),sparc)
299 LIBOBJS+=sparc-dis.o
300 endif
301 ifeq ($(findstring arm, $(TARGET_ARCH) $(ARCH)),arm)
302 LIBOBJS+=arm-dis.o
303 endif
304 ifeq ($(findstring m68k, $(TARGET_ARCH) $(ARCH)),m68k)
305 LIBOBJS+=m68k-dis.o
306 endif
307 ifeq ($(findstring sh4, $(TARGET_ARCH) $(ARCH)),sh4)
308 LIBOBJS+=sh4-dis.o
309 endif
310 ifeq ($(findstring hppa, $(TARGET_BASE_ARCH) $(ARCH)),hppa)
311 LIBOBJS+=hppa-dis.o
312 endif
313 ifeq ($(findstring s390, $(TARGET_ARCH) $(ARCH)),s390)
314 LIBOBJS+=s390-dis.o
315 endif
317 # libqemu
319 ifdef CONFIG_DYNGEN_OP
320 OPC_H = gen-op.h dyngen-opc.h op.h
321 endif
323 libqemu.a: $(LIBOBJS)
324         rm -f $@
325         $(AR) rcs $@ $(LIBOBJS)
327 translate.o: translate.c cpu.h $(OPC_H)
329 translate-all.o: translate-all.c cpu.h $(OPC_H)
331 tcg/tcg.o: cpu.h $(OPC_H)
333 tcg/tcg-dyngen.o: $(OPC_H)
335 tcg/tcg-runtime.o: $(OPC_H)
337 op.h: op.o $(DYNGEN)
338         $(DYNGEN) -o $@ $<
340 dyngen-opc.h: op.o $(DYNGEN)
341         $(DYNGEN) -c -o $@ $<
343 gen-op.h: op.o $(DYNGEN)
344         $(DYNGEN) -g -o $@ $<
346 op.o: op.c
347         $(CC) $(OP_CFLAGS) $(CPPFLAGS) $(I386_CFLAGS) -c -o $@ $<
349 machine.o: machine.c
350         $(CC) $(OP_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
352 # HELPER_CFLAGS is used for all the code compiled with static register
353 # variables
354 op_helper.o: op_helper.c
355         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) $(I386_CFLAGS) -c -o $@ $<
357 cpu-exec.o: cpu-exec.c $(OPC_H)
358         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
360 qemu-kvm-helper.o: qemu-kvm-helper.c
361         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
363 #########################################################
364 # Linux user emulator target
366 ifdef CONFIG_LINUX_USER
368 ifndef TARGET_ABI_DIR
369   TARGET_ABI_DIR=$(TARGET_ARCH)
370 endif
371 VPATH+=:$(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
372 CPPFLAGS+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR)
374 ifdef CONFIG_STATIC
375 LDFLAGS+=-static
376 endif
378 ifeq ($(ARCH),i386)
379 ifdef TARGET_GPROF
380 USE_I386_LD=y
381 endif
382 ifdef CONFIG_STATIC
383 USE_I386_LD=y
384 endif
385 ifdef USE_I386_LD
386 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
387 else
388 # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
389 # that the kernel ELF loader considers as an executable. I think this
390 # is the simplest way to make it self virtualizable!
391 LDFLAGS+=-Wl,-shared
392 endif
393 endif
395 ifeq ($(ARCH),x86_64)
396 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
397 endif
399 ifeq ($(ARCH),ppc)
400 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
401 endif
403 ifeq ($(ARCH),ppc64)
404 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
405 endif
407 ifeq ($(ARCH),s390)
408 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
409 endif
411 ifeq ($(ARCH),sparc)
412 # -static is used to avoid g1/g3 usage by the dynamic linker    
413 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
414 endif
416 ifeq ($(ARCH),sparc64)
417 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
418 endif
420 ifeq ($(ARCH),alpha)
421 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
422 endif
424 ifeq ($(ARCH),ia64)
425 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
426 endif
428 ifeq ($(ARCH),arm)
429 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
430 endif
432 ifeq ($(ARCH),m68k)
433 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
434 endif
436 ifeq ($(ARCH),mips)
437 ifeq ($(WORDS_BIGENDIAN),yes)
438 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
439 else
440 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
441 endif
442 endif
444 ifeq ($(ARCH),mips64)
445 ifeq ($(WORDS_BIGENDIAN),yes)
446 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
447 else
448 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
449 endif
450 endif
452 OBJS= main.o syscall.o strace.o mmap.o signal.o path.o thunk.o \
453       elfload.o linuxload.o uaccess.o
454 LIBS+= $(AIOLIBS)
455 ifdef TARGET_HAS_BFLT
456 OBJS+= flatload.o
457 endif
458 ifdef TARGET_HAS_ELFLOAD32
459 OBJS+= elfload32.o
460 elfload32.o: elfload.c
461 endif
463 ifeq ($(TARGET_ARCH), i386)
464 OBJS+= vm86.o
465 endif
466 ifeq ($(TARGET_ARCH), arm)
467 OBJS+=nwfpe/fpa11.o nwfpe/fpa11_cpdo.o \
468 nwfpe/fpa11_cpdt.o nwfpe/fpa11_cprt.o nwfpe/fpopcode.o nwfpe/single_cpdo.o \
469  nwfpe/double_cpdo.o nwfpe/extended_cpdo.o arm-semi.o
470 endif
471 ifeq ($(TARGET_ARCH), m68k)
472 OBJS+= m68k-sim.o m68k-semi.o
473 endif
475 ifdef CONFIG_GDBSTUB
476 OBJS+=gdbstub.o gdbstub-xml.o
477 endif
479 OBJS+= libqemu.a
481 # Note: this is a workaround. The real fix is to avoid compiling
482 # cpu_signal_handler() in cpu-exec.c.
483 signal.o: signal.c
484         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
486 $(QEMU_PROG): $(OBJS) ../libqemu_user.a
487         $(CC) $(LDFLAGS) -o $@ $^  $(LIBS)
488 ifeq ($(ARCH),alpha)
489 # Mark as 32 bit binary, i. e. it will be mapped into the low 31 bit of
490 # the address space (31 bit so sign extending doesn't matter)
491         echo -ne '\001\000\000\000' | dd of=qemu bs=1 seek=48 count=4 conv=notrunc
492 endif
494 endif #CONFIG_LINUX_USER
496 #########################################################
497 # Darwin user emulator target
499 ifdef CONFIG_DARWIN_USER
501 VPATH+=:$(SRC_PATH)/darwin-user
502 CPPFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
504 # Leave some space for the regular program loading zone
505 LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000
507 LIBS+=-lmx
509 OBJS= main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o
511 OBJS+= libqemu.a
513 ifdef CONFIG_GDBSTUB
514 OBJS+=gdbstub.o gdbstub-xml.o
515 endif
517 # Note: this is a workaround. The real fix is to avoid compiling
518 # cpu_signal_handler() in cpu-exec.c.
519 signal.o: signal.c
520         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
522 $(QEMU_PROG): $(OBJS)
523         $(CC) $(LDFLAGS) -o $@ $^  $(LIBS)
525 endif #CONFIG_DARWIN_USER
527 #########################################################
528 # BSD user emulator target
530 ifdef CONFIG_BSD_USER
532 VPATH+=:$(SRC_PATH)/bsd-user
533 CPPFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH)
535 ifdef CONFIG_STATIC
536 LDFLAGS+=-static
537 endif
539 ifeq ($(ARCH),i386)
540 ifdef TARGET_GPROF
541 USE_I386_LD=y
542 endif
543 ifdef CONFIG_STATIC
544 USE_I386_LD=y
545 endif
546 ifdef USE_I386_LD
547 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
548 else
549 # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
550 # that the kernel ELF loader considers as an executable. I think this
551 # is the simplest way to make it self virtualizable!
552 LDFLAGS+=-Wl,-shared
553 endif
554 endif
556 ifeq ($(ARCH),x86_64)
557 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
558 endif
560 ifeq ($(ARCH),ppc)
561 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
562 endif
564 ifeq ($(ARCH),ppc64)
565 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
566 endif
568 ifeq ($(ARCH),s390)
569 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
570 endif
572 ifeq ($(ARCH),sparc)
573 # -static is used to avoid g1/g3 usage by the dynamic linker
574 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld -static
575 endif
577 ifeq ($(ARCH),sparc64)
578 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
579 endif
581 ifeq ($(ARCH),alpha)
582 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
583 endif
585 ifeq ($(ARCH),ia64)
586 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/$(ARCH).ld
587 endif
589 ifeq ($(ARCH),arm)
590 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
591 endif
593 ifeq ($(ARCH),m68k)
594 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
595 endif
597 ifeq ($(ARCH),mips)
598 ifeq ($(WORDS_BIGENDIAN),yes)
599 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
600 else
601 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
602 endif
603 endif
605 ifeq ($(ARCH),mips64)
606 ifeq ($(WORDS_BIGENDIAN),yes)
607 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
608 else
609 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH)el.ld
610 endif
611 endif
613 OBJS= main.o bsdload.o elfload.o mmap.o path.o signal.o strace.o syscall.o
614 OBJS+= uaccess.o
616 OBJS+= libqemu.a
618 ifdef CONFIG_GDBSTUB
619 OBJS+=gdbstub.o
620 endif
622 # Note: this is a workaround. The real fix is to avoid compiling
623 # cpu_signal_handler() in cpu-exec.c.
624 signal.o: signal.c
625         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
627 $(QEMU_PROG): $(OBJS) ../libqemu_user.a
628         $(CC) $(LDFLAGS) -o $@ $^  $(LIBS)
630 endif #CONFIG_BSD_USER
632 #########################################################
633 # System emulator target
634 ifndef CONFIG_USER_ONLY
636 OBJS=vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o machine.o net-checksum.o
637 OBJS+=fw_cfg.o aio.o buffered_file.o migration.o migration-tcp.o
638 ifdef CONFIG_WIN32
639 OBJS+=block-raw-win32.o
640 else
641 OBJS+=block-raw-posix.o
642 endif
644 ifdef CONFIG_AIO
645 OBJS+=compatfd.o
646 endif
648 LIBS+=-lz
649 ifdef CONFIG_ALSA
650 LIBS += -lasound
651 endif
652 ifdef CONFIG_ESD
653 LIBS += -lesd
654 endif
655 ifdef CONFIG_PA
656 LIBS += -lpulse-simple
657 endif
658 ifdef CONFIG_DSOUND
659 LIBS += -lole32 -ldxguid
660 endif
661 ifdef CONFIG_FMOD
662 LIBS += $(CONFIG_FMOD_LIB)
663 endif
664 ifdef CONFIG_OSS
665 LIBS += $(CONFIG_OSS_LIB)
666 endif
668 SOUND_HW = sb16.o es1370.o
669 ifdef CONFIG_AC97
670 SOUND_HW += ac97.o
671 endif
672 ifdef CONFIG_ADLIB
673 SOUND_HW += fmopl.o adlib.o
674 endif
675 ifdef CONFIG_GUS
676 SOUND_HW += gus.o gusemu_hal.o gusemu_mixer.o
677 endif
678 ifdef CONFIG_CS4231A
679 SOUND_HW += cs4231a.o
680 endif
682 ifdef CONFIG_KVM_KERNEL_INC
683 CFLAGS += -I $(CONFIG_KVM_KERNEL_INC)
684 LIBS += -lkvm
685 DEPLIBS += ../libkvm/libkvm.a
686 endif
688 ifdef CONFIG_VNC_TLS
689 CPPFLAGS += $(CONFIG_VNC_TLS_CFLAGS)
690 LIBS += $(CONFIG_VNC_TLS_LIBS)
691 endif
693 ifdef CONFIG_BLUEZ
694 LIBS += $(CONFIG_BLUEZ_LIBS)
695 endif
697 ifdef CONFIG_LIBFDT
698 LIBS += -lfdt
699 DEPLIBS += ../libfdt/libfdt.a
700 endif
702 # SCSI layer
703 OBJS+= lsi53c895a.o esp.o
705 # USB layer
706 OBJS+= usb-ohci.o
708 # EEPROM emulation
709 OBJS += eeprom93xx.o
711 # PCI network cards
712 OBJS += eepro100.o
713 OBJS += ne2000.o
714 OBJS += pcnet.o
715 OBJS += rtl8139.o
716 OBJS += e1000.o
718 # virtio devices
719 OBJS += virtio.o virtio-net.o virtio-blk.o virtio-balloon.o
721 OBJS += device-hotplug.o
723 ifeq ($(TARGET_BASE_ARCH), i386)
724 # Hardware support
725 OBJS+= ide.o pckbd.o ps2.o vga.o $(SOUND_HW) dma.o
726 OBJS+= fdc.o mc146818rtc.o serial.o i8259.o i8254.o pcspk.o pc.o
727 OBJS+= cirrus_vga.o apic.o parallel.o acpi.o piix_pci.o
728 OBJS+= usb-uhci.o vmmouse.o vmport.o vmware_vga.o extboot.o
729 ifeq ($(USE_KVM_PIT), 1)
730 OBJS+= i8254-kvm.o
731 endif
732 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
733 endif
734 ifeq ($(TARGET_BASE_ARCH), ia64)
735 # Hardware support
736 OBJS+= ide.o pckbd.o ps2.o vga.o $(SOUND_HW) dma.o $(AUDIODRV)
737 OBJS+= fdc.o mc146818rtc.o serial.o i8259.o ipf.o
738 OBJS+= cirrus_vga.o parallel.o acpi.o piix_pci.o
739 OBJS+= usb-uhci.o smbus_eeprom.o
740 endif
741 ifeq ($(TARGET_BASE_ARCH), ppc)
742 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
743 # shared objects
744 OBJS+= ppc.o ide.o vga.o $(SOUND_HW) dma.o openpic.o
745 OBJS+= cirrus_vga.o
746 # PREP target
747 OBJS+= pckbd.o ps2.o serial.o i8259.o i8254.o fdc.o m48t59.o mc146818rtc.o
748 OBJS+= prep_pci.o ppc_prep.o
749 # Mac shared devices
750 OBJS+= macio.o cuda.o adb.o mac_nvram.o mac_dbdma.o
751 # OldWorld PowerMac
752 OBJS+= heathrow_pic.o grackle_pci.o ppc_oldworld.o
753 # NewWorld PowerMac
754 OBJS+= unin_pci.o ppc_chrp.o
755 # PowerPC 4xx boards
756 OBJS+= pflash_cfi02.o ppc4xx_devs.o ppc405_uc.o ppc405_boards.o
757 OBJS+= ppc440.o ppc440_bamboo.o device_tree.o
758 endif
759 ifeq ($(TARGET_BASE_ARCH), mips)
760 OBJS+= mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o
761 OBJS+= mips_timer.o mips_int.o dma.o vga.o serial.o i8254.o i8259.o rc4030.o
762 OBJS+= g364fb.o jazz_led.o
763 OBJS+= ide.o gt64xxx.o pckbd.o ps2.o fdc.o mc146818rtc.o usb-uhci.o acpi.o ds1225y.o
764 OBJS+= piix_pci.o parallel.o cirrus_vga.o pcspk.o $(SOUND_HW)
765 OBJS+= mipsnet.o
766 OBJS+= pflash_cfi01.o
767 CPPFLAGS += -DHAS_AUDIO -DHAS_AUDIO_CHOICE
768 endif
769 ifeq ($(TARGET_BASE_ARCH), cris)
770 OBJS+= etraxfs.o
771 OBJS+= etraxfs_dma.o
772 OBJS+= etraxfs_pic.o
773 OBJS+= etraxfs_eth.o
774 OBJS+= etraxfs_timer.o
775 OBJS+= etraxfs_ser.o
777 OBJS+= ptimer.o
778 OBJS+= pflash_cfi02.o
779 endif
780 ifeq ($(TARGET_BASE_ARCH), sparc)
781 ifeq ($(TARGET_ARCH), sparc64)
782 OBJS+= sun4u.o ide.o pckbd.o ps2.o vga.o apb_pci.o
783 OBJS+= fdc.o mc146818rtc.o serial.o m48t59.o
784 OBJS+= cirrus_vga.o parallel.o ptimer.o
785 else
786 OBJS+= sun4m.o tcx.o pcnet.o iommu.o m48t59.o slavio_intctl.o
787 OBJS+= slavio_timer.o slavio_serial.o slavio_misc.o fdc.o sparc32_dma.o
788 OBJS+= cs4231.o ptimer.o eccmemctl.o sbi.o sun4c_intctl.o
789 endif
790 endif
791 ifeq ($(TARGET_BASE_ARCH), arm)
792 OBJS+= integratorcp.o versatilepb.o ps2.o smc91c111.o arm_pic.o arm_timer.o
793 OBJS+= arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o
794 OBJS+= versatile_pci.o ptimer.o
795 OBJS+= realview_gic.o realview.o arm_sysctl.o mpcore.o
796 OBJS+= armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o
797 OBJS+= pl061.o
798 OBJS+= arm-semi.o
799 OBJS+= pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o
800 OBJS+= pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o
801 OBJS+= pflash_cfi01.o gumstix.o
802 OBJS+= zaurus.o ide.o serial.o nand.o ecc.o spitz.o tosa.o tc6393xb.o
803 OBJS+= omap1.o omap_lcdc.o omap_dma.o omap_clk.o omap_mmc.o omap_i2c.o
804 OBJS+= omap2.o omap_dss.o soc_dma.o
805 OBJS+= palm.o tsc210x.o
806 OBJS+= nseries.o blizzard.o onenand.o vga.o cbus.o tusb6010.o usb-musb.o
807 OBJS+= tsc2005.o bt-hci-csr.o
808 OBJS+= mst_fpga.o mainstone.o
809 OBJS+= musicpal.o pflash_cfi02.o
810 CPPFLAGS += -DHAS_AUDIO
811 endif
812 ifeq ($(TARGET_BASE_ARCH), sh4)
813 OBJS+= shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
814 OBJS+= sh_timer.o ptimer.o sh_serial.o sh_intc.o
815 endif
816 ifeq ($(TARGET_BASE_ARCH), m68k)
817 OBJS+= an5206.o mcf5206.o ptimer.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o
818 OBJS+= m68k-semi.o dummy_m68k.o
819 endif
820 ifdef CONFIG_GDBSTUB
821 OBJS+=gdbstub.o gdbstub-xml.o
822 endif
823 ifdef CONFIG_COCOA
824 COCOA_LIBS=-F/System/Library/Frameworks -framework Cocoa -framework IOKit
825 ifdef CONFIG_COREAUDIO
826 COCOA_LIBS+=-framework CoreAudio
827 endif
828 endif
829 ifdef CONFIG_SLIRP
830 CPPFLAGS+=-I$(SRC_PATH)/slirp
831 endif
833 LIBS+=$(AIOLIBS)
834 # specific flags are needed for non soft mmu emulator
835 ifdef CONFIG_STATIC
836 LDFLAGS+=-static
837 endif
838 ifndef CONFIG_DARWIN
839 ifndef CONFIG_WIN32
840 ifndef CONFIG_SOLARIS
841 LIBS+=-lutil
842 endif
843 endif
844 endif
845 ifdef TARGET_GPROF
846 vl.o: CFLAGS+=-p
847 LDFLAGS+=-p
848 endif
850 ifeq ($(ARCH),ia64)
851 LDFLAGS+=-Wl,-G0 -Wl,-T,$(SRC_PATH)/ia64.ld
852 endif
854 ifdef CONFIG_WIN32
855 SDL_LIBS := $(filter-out -mwindows, $(SDL_LIBS)) -mconsole
856 endif
858 # profiling code
859 ifdef TARGET_GPROF
860 LDFLAGS+=-p
861 main.o: CFLAGS+=-p
862 endif
863 ifeq ($(TARGET_ARCH), ia64)
864 firmware.o: firmware.c
865         $(CC) $(HELPER_CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
866 endif
868 $(QEMU_PROG): $(OBJS) ../libqemu_common.a libqemu.a $(DEPLIBS)
869         $(CC) $(LDFLAGS) -o $@ $^ $(LIBS) $(SDL_LIBS) $(COCOA_LIBS) $(CURSES_LIBS) $(BRLAPI_LIBS) $(VDE_LIBS)
871 endif # !CONFIG_USER_ONLY
873 gdbstub-xml.c: $(TARGET_XML_FILES) feature_to_c.sh
874         rm -f $@
875 ifeq ($(TARGET_XML_FILES),)
876         echo > $@
877 else
878         $(SHELL) $(SRC_PATH)/feature_to_c.sh $@ $(TARGET_XML_FILES)
879 endif
881 %.o: %.c
882         $(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
884 %.o: %.S
885         $(CC) $(CPPFLAGS) -c -o $@ $<
887 clean:
888         rm -f *.o *.a *~ $(PROGS) gen-op.h dyngen-opc.h op.h nwfpe/*.o fpu/*.o
889         rm -f *.d */*.d tcg/*.o
891 install: all
892 ifneq ($(PROGS),)
893         $(INSTALL) -m 755 $(PROGS) "$(DESTDIR)$(bindir)"
894 endif
896 # Include automatically generated dependency files
897 -include $(wildcard *.d */*.d)