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