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