The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1 | # |
Mark Salyzyn | 819c58a | 2013-11-22 12:39:43 -0800 | [diff] [blame] | 2 | # Copyright (C) 2008-2014 The Android Open Source Project |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | # |
| 16 | LOCAL_PATH := $(my-dir) |
| 17 | include $(CLEAR_VARS) |
| 18 | |
Mark Salyzyn | 1b79369 | 2015-03-05 09:56:27 -0800 | [diff] [blame] | 19 | # This is what we want to do: |
| 20 | # liblog_cflags := $(shell \ |
| 21 | # sed -n \ |
| 22 | # 's/^\([0-9]*\)[ \t]*liblog[ \t].*/-DLIBLOG_LOG_TAG=\1/p' \ |
| 23 | # $(LOCAL_PATH)/event.logtags) |
| 24 | # so make sure we do not regret hard-coding it as follows: |
| 25 | liblog_cflags := -DLIBLOG_LOG_TAG=1005 |
Mark Salyzyn | d45d36e | 2015-02-12 15:14:26 -0800 | [diff] [blame] | 26 | |
Mark Salyzyn | 99ff946 | 2014-03-12 09:29:06 -0700 | [diff] [blame] | 27 | ifneq ($(TARGET_USES_LOGD),false) |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 28 | liblog_sources := logd_write.c |
Mark Salyzyn | 154f460 | 2014-02-20 14:59:07 -0800 | [diff] [blame] | 29 | else |
| 30 | liblog_sources := logd_write_kern.c |
| 31 | endif |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 32 | |
| 33 | # some files must not be compiled when building against Mingw |
| 34 | # they correspond to features not used by our host development tools |
| 35 | # which are also hard or even impossible to port to native Win32 |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 36 | |
Mark Salyzyn | 1b79369 | 2015-03-05 09:56:27 -0800 | [diff] [blame] | 37 | ifeq ($(strip $(USE_MINGW)),) |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 38 | liblog_sources += \ |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 39 | event_tag_map.c |
Colin Cross | 9227bd3 | 2013-07-23 16:59:20 -0700 | [diff] [blame] | 40 | else |
| 41 | liblog_sources += \ |
| 42 | uio.c |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 43 | endif |
| 44 | |
Mark Salyzyn | d45d36e | 2015-02-12 15:14:26 -0800 | [diff] [blame] | 45 | liblog_host_sources := $(liblog_sources) fake_log_device.c event.logtags |
Mark Salyzyn | 9568705 | 2014-10-02 11:12:28 -0700 | [diff] [blame] | 46 | liblog_target_sources := $(liblog_sources) log_time.cpp log_is_loggable.c |
Mark Salyzyn | 1b79369 | 2015-03-05 09:56:27 -0800 | [diff] [blame] | 47 | ifeq ($(strip $(USE_MINGW)),) |
Mark Salyzyn | 31dd00f | 2015-03-04 17:01:30 -0800 | [diff] [blame] | 48 | liblog_target_sources += logprint.c |
| 49 | endif |
Mark Salyzyn | 99ff946 | 2014-03-12 09:29:06 -0700 | [diff] [blame] | 50 | ifneq ($(TARGET_USES_LOGD),false) |
Mark Salyzyn | c0626fd | 2014-03-14 12:05:57 -0700 | [diff] [blame] | 51 | liblog_target_sources += log_read.c |
Mark Salyzyn | 154f460 | 2014-02-20 14:59:07 -0800 | [diff] [blame] | 52 | else |
Mark Salyzyn | c0626fd | 2014-03-14 12:05:57 -0700 | [diff] [blame] | 53 | liblog_target_sources += log_read_kern.c |
Mark Salyzyn | 154f460 | 2014-02-20 14:59:07 -0800 | [diff] [blame] | 54 | endif |
Andrew Hsieh | 99e7f7a | 2012-03-01 23:58:50 -0800 | [diff] [blame] | 55 | |
Elliott Hughes | f82e741 | 2011-07-13 17:37:07 -0700 | [diff] [blame] | 56 | # Shared and static library for host |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 57 | # ======================================================== |
| 58 | LOCAL_MODULE := liblog |
| 59 | LOCAL_SRC_FILES := $(liblog_host_sources) |
Mark Salyzyn | d45d36e | 2015-02-12 15:14:26 -0800 | [diff] [blame] | 60 | LOCAL_CFLAGS := -DFAKE_LOG_DEVICE=1 -Werror $(liblog_cflags) |
Ian Rogers | 59ec765 | 2014-06-05 14:32:49 -0700 | [diff] [blame] | 61 | LOCAL_MULTILIB := both |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 62 | include $(BUILD_HOST_STATIC_LIBRARY) |
| 63 | |
Elliott Hughes | f82e741 | 2011-07-13 17:37:07 -0700 | [diff] [blame] | 64 | include $(CLEAR_VARS) |
| 65 | LOCAL_MODULE := liblog |
| 66 | LOCAL_WHOLE_STATIC_LIBRARIES := liblog |
Christopher Tate | 5a6b8d1 | 2014-03-14 14:59:53 -0700 | [diff] [blame] | 67 | ifeq ($(strip $(HOST_OS)),linux) |
Mark Salyzyn | fa3716b | 2014-02-14 16:05:05 -0800 | [diff] [blame] | 68 | LOCAL_LDLIBS := -lrt |
Christopher Tate | 5a6b8d1 | 2014-03-14 14:59:53 -0700 | [diff] [blame] | 69 | endif |
Ian Rogers | 59ec765 | 2014-06-05 14:32:49 -0700 | [diff] [blame] | 70 | LOCAL_MULTILIB := both |
Elliott Hughes | f82e741 | 2011-07-13 17:37:07 -0700 | [diff] [blame] | 71 | include $(BUILD_HOST_SHARED_LIBRARY) |
| 72 | |
Andrew Hsieh | 99e7f7a | 2012-03-01 23:58:50 -0800 | [diff] [blame] | 73 | |
Jeff Brown | 29e1e73 | 2011-07-11 22:12:32 -0700 | [diff] [blame] | 74 | # Shared and static library for target |
| 75 | # ======================================================== |
| 76 | include $(CLEAR_VARS) |
| 77 | LOCAL_MODULE := liblog |
Colin Cross | 11aa6ee | 2014-01-03 18:58:16 -0800 | [diff] [blame] | 78 | LOCAL_SRC_FILES := $(liblog_target_sources) |
Mark Salyzyn | d45d36e | 2015-02-12 15:14:26 -0800 | [diff] [blame] | 79 | LOCAL_CFLAGS := -Werror $(liblog_cflags) |
Jeff Brown | 29e1e73 | 2011-07-11 22:12:32 -0700 | [diff] [blame] | 80 | include $(BUILD_STATIC_LIBRARY) |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 81 | |
Jeff Brown | 29e1e73 | 2011-07-11 22:12:32 -0700 | [diff] [blame] | 82 | include $(CLEAR_VARS) |
| 83 | LOCAL_MODULE := liblog |
| 84 | LOCAL_WHOLE_STATIC_LIBRARIES := liblog |
Mark Salyzyn | d45d36e | 2015-02-12 15:14:26 -0800 | [diff] [blame] | 85 | LOCAL_CFLAGS := -Werror $(liblog_cflags) |
Dmitriy Ivanov | 692c0e4 | 2015-03-09 17:11:17 -0700 | [diff] [blame] | 86 | |
| 87 | # TODO: This is to work around b/19059885. Remove after root cause is fixed |
Dmitriy Ivanov | fd8afe6 | 2015-05-08 14:09:24 -0700 | [diff] [blame] | 88 | LOCAL_LDFLAGS_arm := -Wl,--hash-style=both |
Dmitriy Ivanov | 692c0e4 | 2015-03-09 17:11:17 -0700 | [diff] [blame] | 89 | |
Jeff Brown | 29e1e73 | 2011-07-11 22:12:32 -0700 | [diff] [blame] | 90 | include $(BUILD_SHARED_LIBRARY) |
Mark Salyzyn | 819c58a | 2013-11-22 12:39:43 -0800 | [diff] [blame] | 91 | |
| 92 | include $(call first-makefiles-under,$(LOCAL_PATH)) |