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