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