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