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