summaryrefslogtreecommitdiff
path: root/Android.mk
blob: 67f92afbae2cb749daccd85b7178ab72352b61d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
LOCAL_PATH:= $(call my-dir)

#
# libelfcopy
#

include $(CLEAR_VARS)

LOCAL_SRC_FILES += \
	common.c \
	debug.c \
	elfcopy.c \
	hash.c \
	rangesort.c \
	fixdwarf.c \
	dwarf.c

ifeq ($(HOST_OS),linux)
endif
ifeq ($(HOST_OS),darwin)
endif

LOCAL_MODULE:=libelfcopy

#LOCAL_LDLIBS += -ldl
LOCAL_CFLAGS += -O2 -g
LOCAL_CFLAGS += -fno-function-sections -fno-data-sections -fno-inline
LOCAL_CFLAGS += -Wall -Wno-unused-function #-Werror
LOCAL_CFLAGS += -DBIG_ENDIAN=1
LOCAL_CFLAGS += -DARM_SPECIFIC_HACKS
LOCAL_CFLAGS += -DDEBUG
LOCAL_CFLAGS += -DSTRIP_SECTIONS
LOCAL_CFLAGS += -DSTRIP_STATIC_SYMBOLS
LOCAL_CFLAGS += -DMOVE_SECTIONS_IN_RANGES
#LOCAL_CFLAGS += -DSORT_LOCATION_LIST_OFFSETS


# dwarf.c
LOCAL_CFLAGS += -DATTRIBUTE_UNUSED="__attribute__((unused))"
LOCAL_CFLAGS += -DTRUE=1
LOCAL_CFLAGS += -DFALSE=0
LOCAL_CFLAGS += -Dprogram_name=\"libelfcopy\"

LOCAL_STATIC_LIBRARIES := libelf libebl libebl_arm

LOCAL_C_INCLUDES:= \
	$(LOCAL_PATH)/ \
	external/elfutils/lib/ \
	external/elfutils/libelf/ \
	external/elfutils/libebl/

include $(BUILD_HOST_STATIC_LIBRARY)