blob: 9fe5278e3251bcb6e10a0628c35ef5822d5d3a41 [file] [log] [blame]
Zonr Changddf56612012-04-12 15:38:42 +08001#
2# Copyright (C) 2012 The Android Open Source Project
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
17LOCAL_CFLAGS := \
18 -Wall \
19 -Wno-unused-parameter \
20 -Werror \
21 -D__HOST__ \
Stephen Hinese1094342014-05-13 17:55:49 -070022 $(RS_VERSION_DEFINE) \
Zonr Changddf56612012-04-12 15:38:42 +080023 $(LOCAL_CFLAGS)
24
25ifeq ($(TARGET_BUILD_VARIANT),eng)
26libbcc_CFLAGS += -DANDROID_ENGINEERING_BUILD
Stephen Hines6e9e89d2012-07-27 19:16:04 -070027else
28LOCAL_CFLAGS += -D__DISABLE_ASSERTS
Zonr Changddf56612012-04-12 15:38:42 +080029endif
30
Stephen Hinesc31e1012015-08-25 23:10:18 -070031ifeq ($(FORCE_BUILD_LLVM_DISABLE_NDEBUG),true)
32LOCAL_CFLAGS += -DFORCE_BUILD_LLVM_DISABLE_NDEBUG
33endif
34
Zonr Changddf56612012-04-12 15:38:42 +080035LOCAL_C_INCLUDES := \
Zonr Changddf56612012-04-12 15:38:42 +080036 $(LIBBCC_ROOT_PATH)/include \
Stephen Hinesfb81ec12015-05-18 20:04:23 -070037 $(RS_ROOT_PATH) \
Stephen Hines4e986482013-06-15 21:53:29 -070038 $(LLVM_ROOT_PATH)/include \
39 $(LLVM_ROOT_PATH)/host/include \
Zonr Changddf56612012-04-12 15:38:42 +080040 $(LOCAL_C_INCLUDES)
41
42LOCAL_IS_HOST_MODULE := true