blob: 72fa5d992d88ae8c6898be6b5f145353a227c20f [file] [log] [blame]
Chia-I Wuc9b21d92011-08-17 11:07:01 +08001# Mesa 3-D graphics library
2#
3# Copyright (C) 2010-2011 Chia-I Wu <olvaffe@gmail.com>
4# Copyright (C) 2010-2011 LunarG Inc.
5#
6# Permission is hereby granted, free of charge, to any person obtaining a
7# copy of this software and associated documentation files (the "Software"),
8# to deal in the Software without restriction, including without limitation
9# the rights to use, copy, modify, merge, publish, distribute, sublicense,
10# and/or sell copies of the Software, and to permit persons to whom the
11# Software is furnished to do so, subject to the following conditions:
12#
13# The above copyright notice and this permission notice shall be included
14# in all copies or substantial portions of the Software.
15#
16# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22# DEALINGS IN THE SOFTWARE.
23
Chia-I Wud2cd6212011-11-26 11:20:05 +080024ifeq ($(LOCAL_IS_HOST_MODULE),true)
Rob Herring1f53a572016-02-02 14:45:08 -060025LOCAL_CFLAGS += -D_GNU_SOURCE
Chia-I Wud2cd6212011-11-26 11:20:05 +080026endif
27
Chia-I Wuc9b21d92011-08-17 11:07:01 +080028LOCAL_C_INCLUDES += \
Emil Velikov6fb80172015-03-27 16:13:50 +000029 $(MESA_TOP)/src \
Chia-I Wuc9b21d92011-08-17 11:07:01 +080030 $(MESA_TOP)/include
31
Emil Velikovba3bc1e2015-03-27 14:18:24 +000032MESA_VERSION := $(shell cat $(MESA_TOP)/VERSION)
Chia-I Wu75cc24c2011-11-25 11:59:02 +080033# define ANDROID_VERSION (e.g., 4.0.x => 0x0400)
Chia-I Wu75cc24c2011-11-25 11:59:02 +080034LOCAL_CFLAGS += \
Emil Velikov488b3ed2013-07-25 23:45:45 +010035 -DPACKAGE_VERSION=\"$(MESA_VERSION)\" \
Chad Versacee34fe8b2013-03-18 13:56:28 -070036 -DPACKAGE_BUGREPORT=\"https://bugs.freedesktop.org/enter_bug.cgi?product=Mesa\" \
Chad Versace56c6cdc2012-12-20 14:14:51 -080037 -DANDROID_VERSION=0x0$(MESA_ANDROID_MAJOR_VERSION)0$(MESA_ANDROID_MINOR_VERSION)
Chia-I Wu75cc24c2011-11-25 11:59:02 +080038
Chia-I Wuc9b21d92011-08-17 11:07:01 +080039LOCAL_CFLAGS += \
Mauro Rossi8056b3f2015-08-21 23:46:29 +020040 -D__STDC_LIMIT_MACROS \
Emil Velikov39a175e2015-03-27 20:10:35 +000041 -DHAVE___BUILTIN_EXPECT \
42 -DHAVE___BUILTIN_FFS \
43 -DHAVE___BUILTIN_FFSLL \
44 -DHAVE_FUNC_ATTRIBUTE_FLATTEN \
45 -DHAVE_FUNC_ATTRIBUTE_UNUSED \
46 -DHAVE_FUNC_ATTRIBUTE_FORMAT \
47 -DHAVE_FUNC_ATTRIBUTE_PACKED \
48 -DHAVE___BUILTIN_CTZ \
49 -DHAVE___BUILTIN_POPCOUNT \
50 -DHAVE___BUILTIN_POPCOUNTLL \
51 -DHAVE___BUILTIN_CLZ \
52 -DHAVE___BUILTIN_CLZLL \
53 -DHAVE___BUILTIN_UNREACHABLE \
Matt Turner814345f2012-09-18 22:09:26 -070054 -DHAVE_PTHREAD=1 \
Chia-I Wuc9b21d92011-08-17 11:07:01 +080055 -fvisibility=hidden \
56 -Wno-sign-compare
57
Rob Herring1f53a572016-02-02 14:45:08 -060058# mesa requires at least c99 compiler
59LOCAL_CONLYFLAGS += \
60 -std=c99
61
Chia-I Wuc9b21d92011-08-17 11:07:01 +080062ifeq ($(strip $(MESA_ENABLE_ASM)),true)
63ifeq ($(TARGET_ARCH),x86)
64LOCAL_CFLAGS += \
Tapani Pälli57c57df2012-08-16 13:59:12 +030065 -DUSE_X86_ASM \
66 -DHAVE_DLOPEN \
67
Chia-I Wuc9b21d92011-08-17 11:07:01 +080068endif
69endif
70
Chih-Wei Huang18428322015-05-20 11:25:34 +080071ifeq ($(MESA_ENABLE_LLVM),true)
72LOCAL_CFLAGS += \
Mauro Rossi5235bfe2015-08-21 23:46:28 +020073 -DHAVE_LLVM=0x0305 -DMESA_LLVM_VERSION_PATCH=2 \
Chih-Wei Huang18428322015-05-20 11:25:34 +080074 -D__STDC_CONSTANT_MACROS \
75 -D__STDC_FORMAT_MACROS \
76 -D__STDC_LIMIT_MACROS
77endif
78
Chia-I Wuc9b21d92011-08-17 11:07:01 +080079LOCAL_CPPFLAGS += \
Chih-Wei Huangc5e11e52015-05-20 11:25:39 +080080 $(if $(filter true,$(MESA_LOLLIPOP_BUILD)),-D_USING_LIBCXX) \
Chia-I Wuc9b21d92011-08-17 11:07:01 +080081 -Wno-error=non-virtual-dtor \
82 -Wno-non-virtual-dtor
83
84# uncomment to keep the debug symbols
85#LOCAL_STRIP_MODULE := false
86
87ifeq ($(strip $(LOCAL_MODULE_TAGS)),)
88LOCAL_MODULE_TAGS := optional
89endif