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