Chia-I Wu | c9b21d9 | 2011-08-17 11:07:01 +0800 | [diff] [blame] | 1 | # 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 Wu | d2cd621 | 2011-11-26 11:20:05 +0800 | [diff] [blame] | 24 | ifeq ($(LOCAL_IS_HOST_MODULE),true) |
Rob Herring | 1f53a57 | 2016-02-02 14:45:08 -0600 | [diff] [blame] | 25 | LOCAL_CFLAGS += -D_GNU_SOURCE |
Chia-I Wu | d2cd621 | 2011-11-26 11:20:05 +0800 | [diff] [blame] | 26 | endif |
| 27 | |
Chia-I Wu | c9b21d9 | 2011-08-17 11:07:01 +0800 | [diff] [blame] | 28 | LOCAL_C_INCLUDES += \ |
Emil Velikov | 6fb8017 | 2015-03-27 16:13:50 +0000 | [diff] [blame] | 29 | $(MESA_TOP)/src \ |
Chia-I Wu | c9b21d9 | 2011-08-17 11:07:01 +0800 | [diff] [blame] | 30 | $(MESA_TOP)/include |
| 31 | |
Emil Velikov | ba3bc1e | 2015-03-27 14:18:24 +0000 | [diff] [blame] | 32 | MESA_VERSION := $(shell cat $(MESA_TOP)/VERSION) |
Chia-I Wu | 75cc24c | 2011-11-25 11:59:02 +0800 | [diff] [blame] | 33 | # define ANDROID_VERSION (e.g., 4.0.x => 0x0400) |
Chia-I Wu | 75cc24c | 2011-11-25 11:59:02 +0800 | [diff] [blame] | 34 | LOCAL_CFLAGS += \ |
Rob Herring | 5c7f974 | 2016-01-29 12:52:27 -0600 | [diff] [blame] | 35 | -Wno-unused-parameter \ |
Rob Herring | 6dae917 | 2016-02-24 12:56:26 -0600 | [diff] [blame] | 36 | -Wno-date-time \ |
Emil Velikov | 488b3ed | 2013-07-25 23:45:45 +0100 | [diff] [blame] | 37 | -DPACKAGE_VERSION=\"$(MESA_VERSION)\" \ |
Chad Versace | e34fe8b | 2013-03-18 13:56:28 -0700 | [diff] [blame] | 38 | -DPACKAGE_BUGREPORT=\"https://bugs.freedesktop.org/enter_bug.cgi?product=Mesa\" \ |
Chad Versace | 56c6cdc | 2012-12-20 14:14:51 -0800 | [diff] [blame] | 39 | -DANDROID_VERSION=0x0$(MESA_ANDROID_MAJOR_VERSION)0$(MESA_ANDROID_MINOR_VERSION) |
Chia-I Wu | 75cc24c | 2011-11-25 11:59:02 +0800 | [diff] [blame] | 40 | |
Chia-I Wu | c9b21d9 | 2011-08-17 11:07:01 +0800 | [diff] [blame] | 41 | LOCAL_CFLAGS += \ |
Mauro Rossi | 8056b3f | 2015-08-21 23:46:29 +0200 | [diff] [blame] | 42 | -D__STDC_LIMIT_MACROS \ |
Emil Velikov | 39a175e | 2015-03-27 20:10:35 +0000 | [diff] [blame] | 43 | -DHAVE___BUILTIN_EXPECT \ |
| 44 | -DHAVE___BUILTIN_FFS \ |
| 45 | -DHAVE___BUILTIN_FFSLL \ |
| 46 | -DHAVE_FUNC_ATTRIBUTE_FLATTEN \ |
| 47 | -DHAVE_FUNC_ATTRIBUTE_UNUSED \ |
| 48 | -DHAVE_FUNC_ATTRIBUTE_FORMAT \ |
| 49 | -DHAVE_FUNC_ATTRIBUTE_PACKED \ |
| 50 | -DHAVE___BUILTIN_CTZ \ |
| 51 | -DHAVE___BUILTIN_POPCOUNT \ |
| 52 | -DHAVE___BUILTIN_POPCOUNTLL \ |
| 53 | -DHAVE___BUILTIN_CLZ \ |
| 54 | -DHAVE___BUILTIN_CLZLL \ |
| 55 | -DHAVE___BUILTIN_UNREACHABLE \ |
Matt Turner | 814345f | 2012-09-18 22:09:26 -0700 | [diff] [blame] | 56 | -DHAVE_PTHREAD=1 \ |
Chia-I Wu | c9b21d9 | 2011-08-17 11:07:01 +0800 | [diff] [blame] | 57 | -fvisibility=hidden \ |
| 58 | -Wno-sign-compare |
| 59 | |
Rob Herring | 1f53a57 | 2016-02-02 14:45:08 -0600 | [diff] [blame] | 60 | # mesa requires at least c99 compiler |
| 61 | LOCAL_CONLYFLAGS += \ |
| 62 | -std=c99 |
| 63 | |
Chia-I Wu | c9b21d9 | 2011-08-17 11:07:01 +0800 | [diff] [blame] | 64 | ifeq ($(strip $(MESA_ENABLE_ASM)),true) |
| 65 | ifeq ($(TARGET_ARCH),x86) |
| 66 | LOCAL_CFLAGS += \ |
Tapani Pälli | 57c57df | 2012-08-16 13:59:12 +0300 | [diff] [blame] | 67 | -DUSE_X86_ASM \ |
| 68 | -DHAVE_DLOPEN \ |
| 69 | |
Chia-I Wu | c9b21d9 | 2011-08-17 11:07:01 +0800 | [diff] [blame] | 70 | endif |
| 71 | endif |
| 72 | |
Chih-Wei Huang | 1842832 | 2015-05-20 11:25:34 +0800 | [diff] [blame] | 73 | ifeq ($(MESA_ENABLE_LLVM),true) |
| 74 | LOCAL_CFLAGS += \ |
Mauro Rossi | 5235bfe | 2015-08-21 23:46:28 +0200 | [diff] [blame] | 75 | -DHAVE_LLVM=0x0305 -DMESA_LLVM_VERSION_PATCH=2 \ |
Chih-Wei Huang | 1842832 | 2015-05-20 11:25:34 +0800 | [diff] [blame] | 76 | -D__STDC_CONSTANT_MACROS \ |
| 77 | -D__STDC_FORMAT_MACROS \ |
| 78 | -D__STDC_LIMIT_MACROS |
| 79 | endif |
| 80 | |
Chia-I Wu | c9b21d9 | 2011-08-17 11:07:01 +0800 | [diff] [blame] | 81 | LOCAL_CPPFLAGS += \ |
Chih-Wei Huang | c5e11e5 | 2015-05-20 11:25:39 +0800 | [diff] [blame] | 82 | $(if $(filter true,$(MESA_LOLLIPOP_BUILD)),-D_USING_LIBCXX) \ |
Chia-I Wu | c9b21d9 | 2011-08-17 11:07:01 +0800 | [diff] [blame] | 83 | -Wno-error=non-virtual-dtor \ |
| 84 | -Wno-non-virtual-dtor |
| 85 | |
| 86 | # uncomment to keep the debug symbols |
| 87 | #LOCAL_STRIP_MODULE := false |
| 88 | |
| 89 | ifeq ($(strip $(LOCAL_MODULE_TAGS)),) |
| 90 | LOCAL_MODULE_TAGS := optional |
| 91 | endif |
Rob Herring | 0663edf | 2016-02-24 12:56:27 -0600 | [diff] [blame] | 92 | |
| 93 | # Quiet down the build system and remove any .h files from the sources |
| 94 | LOCAL_SRC_FILES := $(patsubst %.h, , $(LOCAL_SRC_FILES)) |