blob: 0b9f9541ba4c0fadf0abd049d252a14818b5f343 [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 Chtchetkine4ed09fd2011-08-18 09:42:40 -0700427 android/camera/camera-format-converters.c
David 'Digit' Turneraff94b82011-02-07 18:10:54 +0100428
David 'Digit' Turner42fc4492011-06-29 13:16:16 +0200429$(call gen-hw-config-defs)
430
David 'Digit' Turneraff94b82011-02-07 18:10:54 +0100431ifeq ($(HOST_ARCH),x86)
432 CORE_MISC_SOURCES += i386-dis.c
433endif
434ifeq ($(HOST_ARCH),x86_64)
435 CORE_MISC_SOURCES += i386-dis.c
436endif
437ifeq ($(HOST_ARCH),ppc)
438 CORE_MISC_SOURCES += ppc-dis.c \
439 cache-utils.c
440endif
441
442ifeq ($(HOST_OS),linux)
443 CORE_MISC_SOURCES += usb-linux.c \
Vladimir Chtchetkine4ed09fd2011-08-18 09:42:40 -0700444 qemu-thread.c \
445 android/camera/camera-capture-linux.c
David 'Digit' Turneraff94b82011-02-07 18:10:54 +0100446else
447 CORE_MISC_SOURCES += usb-dummy-android.c
448endif
449
450ifeq ($(HOST_OS),windows)
Vladimir Chtchetkine4ed09fd2011-08-18 09:42:40 -0700451 CORE_MISC_SOURCES += tap-win32.c \
452 android/camera/camera-capture-windows.c
453
David 'Digit' Turneraff94b82011-02-07 18:10:54 +0100454else
455 CORE_MISC_SOURCES += posix-aio-compat.c
456endif
457
458LOCAL_SRC_FILES += $(CORE_MISC_SOURCES)
459
460# Required
461LOCAL_CFLAGS += -D_XOPEN_SOURCE=600 -D_BSD_SOURCE=1
462
463SLIRP_SOURCES := \
464 bootp.c \
465 cksum.c \
466 debug.c \
467 if.c \
468 ip_icmp.c \
469 ip_input.c \
470 ip_output.c \
471 mbuf.c \
472 misc.c \
473 sbuf.c \
474 slirp.c \
475 socket.c \
476 tcp_input.c \
477 tcp_output.c \
478 tcp_subr.c \
479 tcp_timer.c \
480 tftp.c \
481 udp.c
482
483LOCAL_SRC_FILES += $(SLIRP_SOURCES:%=slirp-android/%)
484EMULATOR_LIBQEMU_CFLAGS += -I$(LOCAL_PATH)/slirp-android
485
486# socket proxy support
487#
488PROXY_SOURCES := \
489 proxy_common.c \
490 proxy_http.c \
491 proxy_http_connector.c \
492 proxy_http_rewriter.c \
493
494LOCAL_SRC_FILES += $(PROXY_SOURCES:%=proxy/%)
495EMULATOR_LIBQEMU_CFLAGS += -I$(LOCAL_PATH)/proxy
496
497# include telephony stuff
498#
499TELEPHONY_SOURCES := \
500 android_modem.c \
501 modem_driver.c \
502 gsm.c \
503 sim_card.c \
504 sysdeps_qemu.c \
505 sms.c \
506 remote_call.c
507
508LOCAL_SRC_FILES += $(TELEPHONY_SOURCES:%=telephony/%)
509EMULATOR_LIBQEMU_CFLAGS += -I$(LOCAL_PATH)/telephony
510
511# sources inherited from upstream, but not fully
512# integrated into android emulator
513#
514LOCAL_SRC_FILES += \
515 json-lexer.c \
516 json-parser.c \
517 json-streamer.c \
518 qjson.c \
519 qbool.c \
520 qdict.c \
521 qfloat.c \
522 qint.c \
523 qlist.c \
524 qstring.c \
525
David 'Digit' Turneraff94b82011-02-07 18:10:54 +0100526# gdbstub-xml.c contains C-compilable arrays corresponding to the content
527# of $(LOCAL_PATH)/gdb-xml/, and is generated with the 'feature_to_c.sh' script.
528#
529intermediates := $(call intermediates-dir-for,STATIC_LIBRARIES,$(LOCAL_MODULE),true)
530
531ifeq ($(QEMU_TARGET_XML_SOURCES),)
532 QEMU_TARGET_XML_SOURCES := arm-core arm-neon arm-vfp arm-vfp3
533 QEMU_TARGET_XML_SOURCES := $(QEMU_TARGET_XML_SOURCES:%=$(LOCAL_PATH)/gdb-xml/%.xml)
534endif
535
536QEMU_GDBSTUB_XML_C := $(intermediates)/gdbstub-xml.c
537$(QEMU_GDBSTUB_XML_C): PRIVATE_PATH := $(LOCAL_PATH)
538$(QEMU_GDBSTUB_XML_C): PRIVATE_SOURCES := $(TARGET_XML_SOURCES)
539$(QEMU_GDBSTUB_XML_C): PRIVATE_CUSTOM_TOOL = $(PRIVATE_PATH)/feature_to_c.sh $@ $(QEMU_TARGET_XML_SOURCES)
540$(QEMU_GDBSTUB_XML_C): $(QEMU_TARGET_XML_SOURCES) $(LOCAL_PATH)/feature_to_c.sh
541 $(hide) rm -f $@
542 $(transform-generated-source)
543
544LOCAL_GENERATED_SOURCES += $(QEMU_GDBSTUB_XML_C)
545
546EMULATOR_LIBQEMU_CFLAGS += -I$(intermediates)
547
548LOCAL_CFLAGS += $(EMULATOR_LIBQEMU_CFLAGS)
549
550$(call end-emulator-library)
551
552# Block sources, we must compile them with each executable because they
553# are only referenced by the rest of the code using constructor functions.
554# If their object files are put in a static library, these are never compiled
555# into the final linked executable that uses them.
556#
557# Normally, one would solve thus using LOCAL_WHOLE_STATIC_LIBRARIES, but
558# the Darwin linker doesn't support -Wl,--whole-archive or equivalent :-(
559#
560BLOCK_SOURCES += \
561 block.c \
562 blockdev.c \
563 block/qcow.c \
564 block/qcow2.c \
565 block/qcow2-refcount.c \
566 block/qcow2-snapshot.c \
567 block/qcow2-cluster.c \
568 block/cloop.c \
569 block/dmg.c \
570 block/vvfat.c \
571 block/raw.c
572
573ifeq ($(HOST_OS),windows)
574 BLOCK_SOURCES += block/raw-win32.c
575else
576 BLOCK_SOURCES += block/raw-posix.c
577endif
578
579BLOCK_CFLAGS += $(EMULATOR_COMMON_CFLAGS)
580BLOCK_CFLAGS += -DCONFIG_BDRV_WHITELIST=""
581
582
583##############################################################################
584##############################################################################
585###
586### emulator-libelff: TARGET-INDEPENDENT ELF/DWARD PARSER
587###
588### THESE ARE USED BY EVERYTHING EXCEPT 'emulator-ui', BUT WE CANNOT PUT
589### THEM IN emulator-libqemu SINCE THE SOURCES ARE C++
590###
591
592$(call start-emulator-library, emulator-libelff)
593
594LOCAL_CPP_EXTENSION := .cc
595
596ELFF_CFLAGS := -I$(LOCAL_PATH)/elff
597ELFF_LDLIBS := -lstdc++
598
599ELFF_SOURCES := \
600 dwarf_cu.cc \
601 dwarf_die.cc \
602 dwarf_utils.cc \
603 elf_alloc.cc \
604 elf_file.cc \
605 elf_mapped_section.cc \
606 elff_api.cc \
607
608LOCAL_SRC_FILES += $(ELFF_SOURCES:%=elff/%)
609
610LOCAL_CFLAGS += \
611 -fno-exceptions \
612 $(ELFF_CFLAGS) \
613
614$(call end-emulator-library)
615
616
617##############################################################################
618##############################################################################
619###
620### gen-hx-header: Generate headers from .hx file with "hxtool" script.
621###
622### The 'hxtool' script is used to generate header files from an input
623### file with the .hx suffix. I.e. foo.hx --> foo.h
624###
625### Due to the way the Android build system works, we need to regenerate
626### it for each module (the output will go into a module-specific directory).
627###
628### This defines a function that can be used inside a module definition
629###
David 'Digit' Turner088edf82011-05-09 15:59:28 +0200630### $(call gen-hx-header,<input>,<output>,<source-files>)
David 'Digit' Turneraff94b82011-02-07 18:10:54 +0100631###
632### Where: <input> is the input file, with a .hx suffix (e.g. foo.hx)
David 'Digit' Turner088edf82011-05-09 15:59:28 +0200633### <output> is the output file, with a .h or .def suffix
David 'Digit' Turneraff94b82011-02-07 18:10:54 +0100634### <source-files> is a list of source files that include the header
635###
636
637
638gen-hx-header = $(eval $(call gen-hx-header-ev,$1,$2,$3))
639
640define gen-hx-header-ev
David 'Digit' Turner42fc4492011-06-29 13:16:16 +0200641intermediates := $$(call intermediates-dir-for,$$(LOCAL_MODULE_CLASS),$$(LOCAL_MODULE),true)
David 'Digit' Turner317c9d52011-05-10 06:38:21 +0200642
David 'Digit' Turner088edf82011-05-09 15:59:28 +0200643QEMU_HEADER_H := $$(intermediates)/$$2
David 'Digit' Turneraff94b82011-02-07 18:10:54 +0100644$$(QEMU_HEADER_H): PRIVATE_PATH := $$(LOCAL_PATH)
645$$(QEMU_HEADER_H): PRIVATE_CUSTOM_TOOL = $$(PRIVATE_PATH)/hxtool -h < $$< > $$@
646$$(QEMU_HEADER_H): $$(LOCAL_PATH)/$$1 $$(LOCAL_PATH)/hxtool
647 $$(transform-generated-source)
648
649LOCAL_GENERATED_SOURCES += $$(QEMU_HEADER_H)
David 'Digit' Turner088edf82011-05-09 15:59:28 +0200650LOCAL_C_INCLUDES += $$(intermediates)
David 'Digit' Turneraff94b82011-02-07 18:10:54 +0100651endef
652