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 | |
Dan Willemsen | 87a419c | 2015-08-13 14:43:34 -0700 | [diff] [blame] | 27 | liblog_host_sources := logd_write.c log_event_write.c fake_log_device.c event.logtags |
| 28 | liblog_target_sources := logd_write.c log_event_write.c event_tag_map.c log_time.cpp log_is_loggable.c |
Mark Salyzyn | 31dd00f | 2015-03-04 17:01:30 -0800 | [diff] [blame] | 29 | liblog_target_sources += logprint.c |
Mark Salyzyn | c0626fd | 2014-03-14 12:05:57 -0700 | [diff] [blame] | 30 | liblog_target_sources += log_read.c |
Andrew Hsieh | 99e7f7a | 2012-03-01 23:58:50 -0800 | [diff] [blame] | 31 | |
Elliott Hughes | f82e741 | 2011-07-13 17:37:07 -0700 | [diff] [blame] | 32 | # Shared and static library for host |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 33 | # ======================================================== |
| 34 | LOCAL_MODULE := liblog |
| 35 | LOCAL_SRC_FILES := $(liblog_host_sources) |
Dan Willemsen | 87a419c | 2015-08-13 14:43:34 -0700 | [diff] [blame] | 36 | # some files must not be compiled when building against Mingw |
| 37 | # they correspond to features not used by our host development tools |
| 38 | # which are also hard or even impossible to port to native Win32 |
| 39 | LOCAL_SRC_FILES_darwin := event_tag_map.c |
| 40 | LOCAL_SRC_FILES_linux := event_tag_map.c |
| 41 | LOCAL_SRC_FILES_windows := uio.c |
Mark Salyzyn | d45d36e | 2015-02-12 15:14:26 -0800 | [diff] [blame] | 42 | LOCAL_CFLAGS := -DFAKE_LOG_DEVICE=1 -Werror $(liblog_cflags) |
Ian Rogers | 59ec765 | 2014-06-05 14:32:49 -0700 | [diff] [blame] | 43 | LOCAL_MULTILIB := both |
Dan Willemsen | 87a419c | 2015-08-13 14:43:34 -0700 | [diff] [blame] | 44 | LOCAL_MODULE_HOST_OS := darwin linux windows |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 45 | include $(BUILD_HOST_STATIC_LIBRARY) |
| 46 | |
Elliott Hughes | f82e741 | 2011-07-13 17:37:07 -0700 | [diff] [blame] | 47 | include $(CLEAR_VARS) |
| 48 | LOCAL_MODULE := liblog |
| 49 | LOCAL_WHOLE_STATIC_LIBRARIES := liblog |
Dan Willemsen | 87a419c | 2015-08-13 14:43:34 -0700 | [diff] [blame] | 50 | LOCAL_LDLIBS_linux := -lrt |
Ian Rogers | 59ec765 | 2014-06-05 14:32:49 -0700 | [diff] [blame] | 51 | LOCAL_MULTILIB := both |
Evgenii Stepanov | c744ef5 | 2015-06-11 14:39:57 -0700 | [diff] [blame] | 52 | LOCAL_CXX_STL := none |
Stephen Hines | b0e4f08 | 2015-09-10 22:47:07 -0700 | [diff] [blame] | 53 | LOCAL_MODULE_HOST_OS := darwin linux windows |
Elliott Hughes | f82e741 | 2011-07-13 17:37:07 -0700 | [diff] [blame] | 54 | include $(BUILD_HOST_SHARED_LIBRARY) |
| 55 | |
Andrew Hsieh | 99e7f7a | 2012-03-01 23:58:50 -0800 | [diff] [blame] | 56 | |
Jeff Brown | 29e1e73 | 2011-07-11 22:12:32 -0700 | [diff] [blame] | 57 | # Shared and static library for target |
| 58 | # ======================================================== |
| 59 | include $(CLEAR_VARS) |
| 60 | LOCAL_MODULE := liblog |
Colin Cross | 11aa6ee | 2014-01-03 18:58:16 -0800 | [diff] [blame] | 61 | LOCAL_SRC_FILES := $(liblog_target_sources) |
Mark Salyzyn | d45d36e | 2015-02-12 15:14:26 -0800 | [diff] [blame] | 62 | LOCAL_CFLAGS := -Werror $(liblog_cflags) |
Evgenii Stepanov | c744ef5 | 2015-06-11 14:39:57 -0700 | [diff] [blame] | 63 | # AddressSanitizer runtime library depends on liblog. |
| 64 | LOCAL_SANITIZE := never |
Jeff Brown | 29e1e73 | 2011-07-11 22:12:32 -0700 | [diff] [blame] | 65 | include $(BUILD_STATIC_LIBRARY) |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 66 | |
Jeff Brown | 29e1e73 | 2011-07-11 22:12:32 -0700 | [diff] [blame] | 67 | include $(CLEAR_VARS) |
| 68 | LOCAL_MODULE := liblog |
| 69 | LOCAL_WHOLE_STATIC_LIBRARIES := liblog |
Mark Salyzyn | d45d36e | 2015-02-12 15:14:26 -0800 | [diff] [blame] | 70 | LOCAL_CFLAGS := -Werror $(liblog_cflags) |
Dmitriy Ivanov | 692c0e4 | 2015-03-09 17:11:17 -0700 | [diff] [blame] | 71 | |
Dmitriy Ivanov | 58558a5 | 2015-09-28 10:40:35 -0700 | [diff] [blame] | 72 | # TODO: This is to work around b/24465209. Remove after root cause is fixed |
Dmitriy Ivanov | fd8afe6 | 2015-05-08 14:09:24 -0700 | [diff] [blame] | 73 | LOCAL_LDFLAGS_arm := -Wl,--hash-style=both |
Dmitriy Ivanov | 692c0e4 | 2015-03-09 17:11:17 -0700 | [diff] [blame] | 74 | |
Evgenii Stepanov | c744ef5 | 2015-06-11 14:39:57 -0700 | [diff] [blame] | 75 | LOCAL_SANITIZE := never |
| 76 | LOCAL_CXX_STL := none |
| 77 | |
Jeff Brown | 29e1e73 | 2011-07-11 22:12:32 -0700 | [diff] [blame] | 78 | include $(BUILD_SHARED_LIBRARY) |
Mark Salyzyn | 819c58a | 2013-11-22 12:39:43 -0800 | [diff] [blame] | 79 | |
| 80 | include $(call first-makefiles-under,$(LOCAL_PATH)) |