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