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