blob: ed3bd6e51b4b750859a32f150403653e45dfe987 [file] [log] [blame]
David 'Digit' Turneraff94b82011-02-07 18:10:54 +01001# When building this project, we actually generate several components which
2# are the following:
3#
4# - the emulator-ui program (which is target-agnostic)
5# - the target-specific qemu-android-$ARCH programs (headless emulation engines)
6# - the "standalone" emulator programs (embed both UI and engine in a single
7# binary and process), i.e. "emulator" for ARM and "emulator-x86" for x86.
8#
9# This file defines static host libraries that will be used by at least two
10# of these components.
11#
12
13##############################################################################
14##############################################################################
15###
David 'Digit' Turner42fc4492011-06-29 13:16:16 +020016### gen-hw-config-defs: Generate hardware configuration definitions header
17###
18### The 'gen-hw-config.py' script is used to generate the hw-config-defs.h
19### header from the an .ini file like android/avd/hardware-properties.ini
20###
21### Due to the way the Android build system works, we need to regenerate
22### it for each module (the output will go into a module-specific directory).
23###
24### This defines a function that can be used inside a module definition
25###
26### $(call gen-hw-config-defs)
27###
28
29# First, define a rule to generate a dummy "emulator_hw_config_defs" module
30# which purpose is simply to host the generated header in its output directory.
31intermediates := $(call intermediates-dir-for,SHARED_LIBRARIES,emulator_hw_config_defs,true)
32
33QEMU_HARDWARE_PROPERTIES_INI := $(LOCAL_PATH)/android/avd/hardware-properties.ini
34QEMU_HW_CONFIG_DEFS_H := $(intermediates)/android/avd/hw-config-defs.h
35$(QEMU_HW_CONFIG_DEFS_H): PRIVATE_PATH := $(LOCAL_PATH)
David 'Digit' Turner66241a62011-07-06 00:31:59 +020036$(QEMU_HW_CONFIG_DEFS_H): PRIVATE_CUSTOM_TOOL = $(PRIVATE_PATH)/android/tools/gen-hw-config.py $< $@
David 'Digit' Turner42fc4492011-06-29 13:16:16 +020037$(QEMU_HW_CONFIG_DEFS_H): $(QEMU_HARDWARE_PROPERTIES_INI) $(LOCAL_PATH)/android/tools/gen-hw-config.py
38 $(hide) rm -f $@
39 $(transform-generated-source)
40
41QEMU_HW_CONFIG_DEFS_INCLUDES := $(intermediates)
42
43# Second, define a function that needs to be called inside each module that contains
44# a source file that includes the generated header file.
45gen-hw-config-defs = \
46 $(eval LOCAL_GENERATED_SOURCES += $(QEMU_HW_CONFIG_DEFS_H))\
47 $(eval LOCAL_C_INCLUDES += $(QEMU_HW_CONFIG_DEFS_INCLUDES))
48
49##############################################################################
50##############################################################################
51###
David 'Digit' Turneraff94b82011-02-07 18:10:54 +010052### emulator-common: LIBRARY OF COMMON FUNCTIONS
53###
54### THESE ARE POTENTIALLY USED BY ALL COMPONENTS
55###
56
57$(call start-emulator-library, emulator-common)
58
59EMULATOR_COMMON_CFLAGS :=
60
61# Needed by everything about the host
62EMULATOR_COMMON_CFLAGS += \
63 -I$(LOCAL_PATH)/android/config/$(QEMU_HOST_TAG)
64
65# add the build ID to the default macro definitions
66ifeq ($(BUILD_STANDALONE_EMULATOR),)
67EMULATOR_COMMON_CFLAGS += -DANDROID_BUILD_ID="$(strip $(BUILD_ID))-$(strip $(BUILD_NUMBER))"
68endif
69
70# For non-standalone builds, extract the major version number from the Android SDK
71# tools revision number.
72ifneq ($(BUILD_STANDALONE_EMULATOR),true)
73 ANDROID_SDK_TOOLS_REVISION := $(shell awk -F= '/Pkg.Revision/ { print $$2; }' sdk/files/tools_source.properties)
74endif
75
76ANDROID_SDK_TOOLS_REVISION := $(strip $(ANDROID_SDK_TOOLS_REVISION))
77ifdef ANDROID_SDK_TOOLS_REVISION
78 EMULATOR_COMMON_CFLAGS += -DANDROID_SDK_TOOLS_REVISION=$(ANDROID_SDK_TOOLS_REVISION)
79endif
80
81# Enable large-file support (i.e. make off_t a 64-bit value)
82ifeq ($(HOST_OS),linux)
83EMULATOR_COMMON_CFLAGS += -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
84endif
85
86###########################################################
87# Zlib sources
88#
89ZLIB_DIR := distrib/zlib-1.2.3
90include $(LOCAL_PATH)/$(ZLIB_DIR)/sources.make
91EMULATOR_COMMON_CFLAGS += -I$(LOCAL_PATH)/$(ZLIB_DIR)
92
93LOCAL_SRC_FILES += $(ZLIB_SOURCES)
94
95###########################################################
96# Android utility functions
97#
98LOCAL_SRC_FILES += \
99 sockets.c \
100 iolooper-select.c \
101 android/async-console.c \
102 android/async-utils.c \
103 android/charmap.c \
104 android/framebuffer.c \
105 android/keycode-array.c \
106 android/avd/hw-config.c \
107 android/avd/info.c \
David 'Digit' Turner2d238fd2011-03-25 10:34:47 +0100108 android/avd/util.c \
David 'Digit' Turneraff94b82011-02-07 18:10:54 +0100109 android/sync-utils.c \
110 android/utils/assert.c \
111 android/utils/bufprint.c \
112 android/utils/debug.c \
David 'Digit' Turner816e53c2011-08-17 18:33:45 +0200113 android/utils/dll.c \
David 'Digit' Turneraff94b82011-02-07 18:10:54 +0100114 android/utils/dirscanner.c \
115 android/utils/filelock.c \
116 android/utils/ini.c \
David 'Digit' Turnerbbb81042011-03-17 14:48:44 +0100117 android/utils/intmap.c \
David 'Digit' Turner0a879bf2011-05-12 18:45:18 +0200118 android/utils/lineinput.c \
David 'Digit' Turneraff94b82011-02-07 18:10:54 +0100119 android/utils/mapfile.c \
120 android/utils/misc.c \
121 android/utils/panic.c \
122 android/utils/path.c \
123 android/utils/reflist.c \
124 android/utils/refset.c \
125 android/utils/stralloc.c \
126 android/utils/system.c \
127 android/utils/tempfile.c \
128 android/utils/vector.c \
129
David 'Digit' Turner42fc4492011-06-29 13:16:16 +0200130$(call gen-hw-config-defs)
131
David 'Digit' Turneraff94b82011-02-07 18:10:54 +0100132LOCAL_CFLAGS += $(EMULATOR_COMMON_CFLAGS)
133
134$(call end-emulator-library)
135
136##############################################################################
137##############################################################################
138###
139### emulator-libui: LIBRARY OF UI-RELATED FUNCTIONS
140###
141### THESE ARE USED BY 'emulator-ui' AND THE STANDALONE PROGRAMS
142###
143
144$(call start-emulator-library, emulator-libui)
145
146EMULATOR_LIBUI_CFLAGS :=
147
148LOCAL_CFLAGS += $(EMULATOR_COMMON_CFLAGS)
149
150###########################################################
151# Libpng configuration
152#
153LIBPNG_DIR := distrib/libpng-1.2.19
154include $(LOCAL_PATH)/$(LIBPNG_DIR)/sources.make
155
156EMULATOR_LIBUI_CFLAGS += \
157 $(LIBPNG_CFLAGS) \
158 -I$(LOCAL_PATH)/$(LIBPNG_DIR)
159
160LOCAL_SRC_FILES += $(LIBPNG_SOURCES) loadpng.c
161
162##############################################################################
163# SDL-related definitions
164#
165
166# Build SDL from sources except in certain cases where we use
167# prebuilt libraries instead.
168#
169BUILD_SDL_FROM_SOURCES := true
170
171# On linux-x86, using the prebuilts avoid installing all the X11
172# development packages on our build servers.
173#
174ifeq ($(QEMU_HOST_TAG),linux-x86)
175 BUILD_SDL_FROM_SOURCES := false
176endif
177
178# On darwin-x86, a bug in the Android build system prevents the compilation
179# of Objective-C sources. Fixed recently in AOSP, but we still use the
180# prebuilts for the benefit of older platform branches.
181#
182ifeq ($(QEMU_HOST_TAG),darwin-x86)
183 BUILD_SDL_FROM_SOURCES := false
184endif
185
186# If we're building with android-configure.sh && make, always build from
187# sources to catch regressions as soon as they happen.
188#
189ifeq ($(BUILD_STANDALONE_EMULATOR),true)
190 BUILD_SDL_FROM_SOURCES := true
191endif
192
193# Except if we used android-configure.sh --sdl-config=<script>
194#
David 'Digit' Turnera4026682011-08-24 12:54:01 +0200195ifneq ($(QEMU_SDL_CONFIG),)
David 'Digit' Turneraff94b82011-02-07 18:10:54 +0100196 BUILD_SDL_FROM_SOURCES := false
David 'Digit' Turnera4026682011-08-24 12:54:01 +0200197 SDL_CONFIG := $(QEMU_SDL_CONFIG)
David 'Digit' Turneraff94b82011-02-07 18:10:54 +0100198endif
199
200ifneq ($(BUILD_SDL_FROM_SOURCES),true)
201
202 SDL_CONFIG ?= prebuilt/$(QEMU_HOST_TAG)/sdl/bin/sdl-config
203 SDL_CFLAGS := $(shell $(SDL_CONFIG) --cflags)
204
205 # We need to filter out the _GNU_SOURCE variable because it breaks recent
206 # releases of Cygwin when using the -mno-cygwin option. Moreover, we don't
207 # need this macro at all to build the Android emulator.
208 SDL_CFLAGS := $(filter-out -D_GNU_SOURCE=1,$(SDL_CFLAGS))
209 SDL_LDLIBS := $(filter-out %.a %.lib,$(shell $(SDL_CONFIG) --static-libs))
210
211 # Circular dependencies between libSDL and libSDLmain
212 # We repeat the libraries in the final link to work around it
213 SDL_STATIC_LIBRARIES := libSDL libSDLmain libSDL libSDLmain
214
215else # BUILD_SDL_FROM_SOURCES
216
217 SDL_DIR := distrib/sdl-1.2.12
218 include $(LOCAL_PATH)/$(SDL_DIR)/sources.make
219 LOCAL_SRC_FILES += $(SDL_SOURCES)
220
221 EMULATOR_LIBUI_CFLAGS += \
222 -I$(LOCAL_PATH)/$(SDL_DIR)/include
223
224 SDL_STATIC_LIBRARIES :=
225
226endif # BUILD_SDL_FROM_SOURCES
227
228EMULATOR_LIBUI_CFLAGS += $(SDL_CFLAGS)
229EMULATOR_LIBUI_LDLIBS += $(SDL_LDLIBS)
230
231# The following is needed by SDL_LoadObject
232ifneq ($(HOST_OS),windows)
233 EMULATOR_LIBUI_LDLIBS += -ldl
234endif
235
236# the skin support sources
237#
238SKIN_SOURCES := rect.c \
239 region.c \
240 image.c \
241 trackball.c \
242 keyboard.c \
243 keyset.c \
244 file.c \
245 window.c \
246 scaler.c \
247 composer.c \
248 surface.c \
249
250LOCAL_SRC_FILES += $(SKIN_SOURCES:%=android/skin/%)
251
252LOCAL_SRC_FILES += \
253 android/user-config.c \
254 android/resource.c \
255 android/qemulator.c \
256 android/keycode.c \
257
David 'Digit' Turner42fc4492011-06-29 13:16:16 +0200258$(call gen-hw-config-defs)
259
David 'Digit' Turneraff94b82011-02-07 18:10:54 +0100260# enable MMX code for our skin scaler
261ifeq ($(HOST_ARCH),x86)
262LOCAL_CFLAGS += -DUSE_MMX=1 -mmmx
263endif
264
265LOCAL_CFLAGS += $(EMULATOR_LIBUI_CFLAGS)
266
267$(call end-emulator-library)
268
269##############################################################################
270##############################################################################
271###
272### emulator-libqemu: TARGET-INDEPENDENT QEMU FUNCTIONS
273###
274### THESE ARE USED BY EVERYTHING EXCEPT 'emulator-ui'
275###
276
277$(call start-emulator-library, emulator-libqemu)
278
279EMULATOR_LIBQEMU_CFLAGS :=
280
281LOCAL_CFLAGS += $(EMULATOR_COMMON_CFLAGS)
282
283AUDIO_SOURCES := noaudio.c wavaudio.c wavcapture.c mixeng.c
284AUDIO_CFLAGS := -I$(LOCAL_PATH)/audio -DHAS_AUDIO
285AUDIO_LDLIBS :=
286
287LOCAL_CFLAGS += -Wall -Wno-missing-field-initializers
288
289ifeq ($(HOST_OS),darwin)
290 CONFIG_COREAUDIO ?= yes
291 AUDIO_CFLAGS += -DHOST_BSD=1
292endif
293
294ifeq ($(HOST_OS),windows)
295 CONFIG_WINAUDIO ?= yes
296endif
297
298ifeq ($(HOST_OS),linux)
299 CONFIG_OSS ?= yes
300 CONFIG_ALSA ?= yes
301 CONFIG_PULSEAUDIO ?= yes
302 CONFIG_ESD ?= yes
303endif
304
305ifeq ($(HOST_OS),freebsd)
306 CONFIG_OSS ?= yes
307endif
308
309ifeq ($(CONFIG_COREAUDIO),yes)
310 AUDIO_SOURCES += coreaudio.c
311 AUDIO_CFLAGS += -DCONFIG_COREAUDIO
312 AUDIO_LDLIBS += -Wl,-framework,CoreAudio
313endif
314
315ifeq ($(CONFIG_WINAUDIO),yes)
316 AUDIO_SOURCES += winaudio.c
317 AUDIO_CFLAGS += -DCONFIG_WINAUDIO
318endif
319
320ifeq ($(CONFIG_PULSEAUDIO),yes)
321 AUDIO_SOURCES += paaudio.c audio_pt_int.c
322 AUDIO_CFLAGS += -DCONFIG_PULSEAUDIO
323endif
324
325ifeq ($(CONFIG_ALSA),yes)
326 AUDIO_SOURCES += alsaaudio.c audio_pt_int.c
327 AUDIO_CFLAGS += -DCONFIG_ALSA
328endif
329
330ifeq ($(CONFIG_ESD),yes)
331 AUDIO_SOURCES += esdaudio.c
332 AUDIO_CFLAGS += -DCONFIG_ESD
333endif
334
335ifeq ($(CONFIG_OSS),yes)
336 AUDIO_SOURCES += ossaudio.c
337 AUDIO_CFLAGS += -DCONFIG_OSS
338endif
339
340AUDIO_SOURCES := $(call sort,$(AUDIO_SOURCES:%=audio/%))
341
342LOCAL_CFLAGS += -Wno-sign-compare \
343 -fno-strict-aliasing -W -Wall -Wno-unused-parameter \
344
345# this is very important, otherwise the generated binaries may
346# not link properly on our build servers
347ifeq ($(HOST_OS),linux)
348LOCAL_CFLAGS += -fno-stack-protector
349endif
350
351LOCAL_SRC_FILES += $(AUDIO_SOURCES)
352LOCAL_SRC_FILES += \
353 android/audio-test.c
354
355# other flags
356ifneq ($(HOST_OS),windows)
357 AUDIO_LDLIBS += -ldl
358else
359endif
360
361
362EMULATOR_LIBQEMU_CFLAGS += $(AUDIO_CFLAGS)
363EMULATOR_LIBQEMU_LDLIBS += $(AUDIO_LDLIBS)
364
365LOCAL_CFLAGS += -Wno-missing-field-initializers
366
367# migration sources
368#
369ifeq ($(HOST_OS),windows)
370 LOCAL_SRC_FILES += migration-dummy-android.c
371else
372 LOCAL_SRC_FILES += migration.c \
373 migration-exec.c \
374 migration-tcp-android.c
375endif
376
377# misc. sources
378#
379CORE_MISC_SOURCES = \
380 acl.c \
381 aes.c \
382 aio-android.c \
383 async.c \
384 bt-host.c \
385 bt-vhci.c \
386 buffered_file.c \
387 cbuffer.c \
388 charpipe.c \
389 console.c \
390 cutils.c \
391 d3des.c \
392 input.c \
David 'Digit' Turner8354d2d2011-05-11 00:19:06 +0200393 iohandler.c \
David 'Digit' Turneraff94b82011-02-07 18:10:54 +0100394 ioport.c \
395 module.c \
396 net-android.c \
397 notify.c \
398 osdep.c \
David 'Digit' Turneraff94b82011-02-07 18:10:54 +0100399 path.c \
David 'Digit' Turner3b2846a2011-05-11 01:34:40 +0200400 qemu-char.c \
David 'Digit' Turneraff94b82011-02-07 18:10:54 +0100401 qemu-config.c \
402 qemu-error.c \
403 qemu-malloc.c \
404 qemu-option.c \
405 qemu-sockets-android.c \
406 qerror.c \
407 readline.c \
408 savevm.c \
409 shaper.c \
410 tcpdump.c \
411 vnc-android.c \
412 android/boot-properties.c \
413 android/config.c \
414 android/core-init-utils.c \
415 android/gps.c \
416 android/hw-kmsg.c \
417 android/hw-lcd.c \
418 android/hw-events.c \
419 android/hw-control.c \
420 android/hw-sensors.c \
421 android/hw-qemud.c \
David 'Digit' Turneraff94b82011-02-07 18:10:54 +0100422 android/looper-qemu.c \
David 'Digit' Turnerc0ac7332011-05-02 15:05:35 +0200423 android/hw-pipe-net.c \
David 'Digit' Turneraff94b82011-02-07 18:10:54 +0100424 android/qemu-setup.c \
425 android/snapshot.c \
426 android/utils/timezone.c \
Vladimir Chtchetkinec646f5e2011-09-03 15:17:13 -0700427 android/camera/camera-format-converters.c \
428 android/camera/camera-service.c
David 'Digit' Turneraff94b82011-02-07 18:10:54 +0100429
David 'Digit' Turner42fc4492011-06-29 13:16:16 +0200430$(call gen-hw-config-defs)
431
David 'Digit' Turneraff94b82011-02-07 18:10:54 +0100432ifeq ($(HOST_ARCH),x86)
433 CORE_MISC_SOURCES += i386-dis.c
434endif
435ifeq ($(HOST_ARCH),x86_64)
436 CORE_MISC_SOURCES += i386-dis.c
437endif
438ifeq ($(HOST_ARCH),ppc)
439 CORE_MISC_SOURCES += ppc-dis.c \
440 cache-utils.c
441endif
442
443ifeq ($(HOST_OS),linux)
444 CORE_MISC_SOURCES += usb-linux.c \
Vladimir Chtchetkine4ed09fd2011-08-18 09:42:40 -0700445 qemu-thread.c \
446 android/camera/camera-capture-linux.c
David 'Digit' Turneraff94b82011-02-07 18:10:54 +0100447else
448 CORE_MISC_SOURCES += usb-dummy-android.c
449endif
450
451ifeq ($(HOST_OS),windows)
Vladimir Chtchetkine4ed09fd2011-08-18 09:42:40 -0700452 CORE_MISC_SOURCES += tap-win32.c \
453 android/camera/camera-capture-windows.c
454
David 'Digit' Turneraff94b82011-02-07 18:10:54 +0100455else
456 CORE_MISC_SOURCES += posix-aio-compat.c
457endif
458
459LOCAL_SRC_FILES += $(CORE_MISC_SOURCES)
460
461# Required
462LOCAL_CFLAGS += -D_XOPEN_SOURCE=600 -D_BSD_SOURCE=1
463
464SLIRP_SOURCES := \
465 bootp.c \
466 cksum.c \
467 debug.c \
468 if.c \
469 ip_icmp.c \
470 ip_input.c \
471 ip_output.c \
472 mbuf.c \
473 misc.c \
474 sbuf.c \
475 slirp.c \
476 socket.c \
477 tcp_input.c \
478 tcp_output.c \
479 tcp_subr.c \
480 tcp_timer.c \
481 tftp.c \
482 udp.c
483
484LOCAL_SRC_FILES += $(SLIRP_SOURCES:%=slirp-android/%)
485EMULATOR_LIBQEMU_CFLAGS += -I$(LOCAL_PATH)/slirp-android
486
487# socket proxy support
488#
489PROXY_SOURCES := \
490 proxy_common.c \
491 proxy_http.c \
492 proxy_http_connector.c \
493 proxy_http_rewriter.c \
494
495LOCAL_SRC_FILES += $(PROXY_SOURCES:%=proxy/%)
496EMULATOR_LIBQEMU_CFLAGS += -I$(LOCAL_PATH)/proxy
497
498# include telephony stuff
499#
500TELEPHONY_SOURCES := \
501 android_modem.c \
502 modem_driver.c \
503 gsm.c \
504 sim_card.c \
505 sysdeps_qemu.c \
506 sms.c \
507 remote_call.c
508
509LOCAL_SRC_FILES += $(TELEPHONY_SOURCES:%=telephony/%)
510EMULATOR_LIBQEMU_CFLAGS += -I$(LOCAL_PATH)/telephony
511
512# sources inherited from upstream, but not fully
513# integrated into android emulator
514#
515LOCAL_SRC_FILES += \
516 json-lexer.c \
517 json-parser.c \
518 json-streamer.c \
519 qjson.c \
520 qbool.c \
521 qdict.c \
522 qfloat.c \
523 qint.c \
524 qlist.c \
525 qstring.c \
526
David 'Digit' Turneraff94b82011-02-07 18:10:54 +0100527# gdbstub-xml.c contains C-compilable arrays corresponding to the content
528# of $(LOCAL_PATH)/gdb-xml/, and is generated with the 'feature_to_c.sh' script.
529#
530intermediates := $(call intermediates-dir-for,STATIC_LIBRARIES,$(LOCAL_MODULE),true)
531
532ifeq ($(QEMU_TARGET_XML_SOURCES),)
533 QEMU_TARGET_XML_SOURCES := arm-core arm-neon arm-vfp arm-vfp3
534 QEMU_TARGET_XML_SOURCES := $(QEMU_TARGET_XML_SOURCES:%=$(LOCAL_PATH)/gdb-xml/%.xml)
535endif
536
537QEMU_GDBSTUB_XML_C := $(intermediates)/gdbstub-xml.c
538$(QEMU_GDBSTUB_XML_C): PRIVATE_PATH := $(LOCAL_PATH)
539$(QEMU_GDBSTUB_XML_C): PRIVATE_SOURCES := $(TARGET_XML_SOURCES)
540$(QEMU_GDBSTUB_XML_C): PRIVATE_CUSTOM_TOOL = $(PRIVATE_PATH)/feature_to_c.sh $@ $(QEMU_TARGET_XML_SOURCES)
541$(QEMU_GDBSTUB_XML_C): $(QEMU_TARGET_XML_SOURCES) $(LOCAL_PATH)/feature_to_c.sh
542 $(hide) rm -f $@
543 $(transform-generated-source)
544
545LOCAL_GENERATED_SOURCES += $(QEMU_GDBSTUB_XML_C)
546
547EMULATOR_LIBQEMU_CFLAGS += -I$(intermediates)
548
549LOCAL_CFLAGS += $(EMULATOR_LIBQEMU_CFLAGS)
550
551$(call end-emulator-library)
552
553# Block sources, we must compile them with each executable because they
554# are only referenced by the rest of the code using constructor functions.
555# If their object files are put in a static library, these are never compiled
556# into the final linked executable that uses them.
557#
558# Normally, one would solve thus using LOCAL_WHOLE_STATIC_LIBRARIES, but
559# the Darwin linker doesn't support -Wl,--whole-archive or equivalent :-(
560#
561BLOCK_SOURCES += \
562 block.c \
563 blockdev.c \
564 block/qcow.c \
565 block/qcow2.c \
566 block/qcow2-refcount.c \
567 block/qcow2-snapshot.c \
568 block/qcow2-cluster.c \
569 block/cloop.c \
570 block/dmg.c \
571 block/vvfat.c \
572 block/raw.c
573
574ifeq ($(HOST_OS),windows)
575 BLOCK_SOURCES += block/raw-win32.c
576else
577 BLOCK_SOURCES += block/raw-posix.c
578endif
579
580BLOCK_CFLAGS += $(EMULATOR_COMMON_CFLAGS)
581BLOCK_CFLAGS += -DCONFIG_BDRV_WHITELIST=""
582
583
584##############################################################################
585##############################################################################
586###
587### emulator-libelff: TARGET-INDEPENDENT ELF/DWARD PARSER
588###
589### THESE ARE USED BY EVERYTHING EXCEPT 'emulator-ui', BUT WE CANNOT PUT
590### THEM IN emulator-libqemu SINCE THE SOURCES ARE C++
591###
592
593$(call start-emulator-library, emulator-libelff)
594
595LOCAL_CPP_EXTENSION := .cc
596
597ELFF_CFLAGS := -I$(LOCAL_PATH)/elff
598ELFF_LDLIBS := -lstdc++
599
600ELFF_SOURCES := \
601 dwarf_cu.cc \
602 dwarf_die.cc \
603 dwarf_utils.cc \
604 elf_alloc.cc \
605 elf_file.cc \
606 elf_mapped_section.cc \
607 elff_api.cc \
608
609LOCAL_SRC_FILES += $(ELFF_SOURCES:%=elff/%)
610
611LOCAL_CFLAGS += \
612 -fno-exceptions \
613 $(ELFF_CFLAGS) \
614
615$(call end-emulator-library)
616
617
618##############################################################################
619##############################################################################
620###
621### gen-hx-header: Generate headers from .hx file with "hxtool" script.
622###
623### The 'hxtool' script is used to generate header files from an input
624### file with the .hx suffix. I.e. foo.hx --> foo.h
625###
626### Due to the way the Android build system works, we need to regenerate
627### it for each module (the output will go into a module-specific directory).
628###
629### This defines a function that can be used inside a module definition
630###
David 'Digit' Turner088edf82011-05-09 15:59:28 +0200631### $(call gen-hx-header,<input>,<output>,<source-files>)
David 'Digit' Turneraff94b82011-02-07 18:10:54 +0100632###
633### Where: <input> is the input file, with a .hx suffix (e.g. foo.hx)
David 'Digit' Turner088edf82011-05-09 15:59:28 +0200634### <output> is the output file, with a .h or .def suffix
David 'Digit' Turneraff94b82011-02-07 18:10:54 +0100635### <source-files> is a list of source files that include the header
636###
637
638
639gen-hx-header = $(eval $(call gen-hx-header-ev,$1,$2,$3))
640
641define gen-hx-header-ev
David 'Digit' Turner42fc4492011-06-29 13:16:16 +0200642intermediates := $$(call intermediates-dir-for,$$(LOCAL_MODULE_CLASS),$$(LOCAL_MODULE),true)
David 'Digit' Turner317c9d52011-05-10 06:38:21 +0200643
David 'Digit' Turner088edf82011-05-09 15:59:28 +0200644QEMU_HEADER_H := $$(intermediates)/$$2
David 'Digit' Turneraff94b82011-02-07 18:10:54 +0100645$$(QEMU_HEADER_H): PRIVATE_PATH := $$(LOCAL_PATH)
646$$(QEMU_HEADER_H): PRIVATE_CUSTOM_TOOL = $$(PRIVATE_PATH)/hxtool -h < $$< > $$@
647$$(QEMU_HEADER_H): $$(LOCAL_PATH)/$$1 $$(LOCAL_PATH)/hxtool
648 $$(transform-generated-source)
649
650LOCAL_GENERATED_SOURCES += $$(QEMU_HEADER_H)
David 'Digit' Turner088edf82011-05-09 15:59:28 +0200651LOCAL_C_INCLUDES += $$(intermediates)
David 'Digit' Turneraff94b82011-02-07 18:10:54 +0100652endef
653