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 \ |
Rob Herring | 54e550a | 2016-06-07 18:27:33 -0500 | [diff] [blame] | 37 | -Wno-pointer-arith \ |
| 38 | -Wno-missing-field-initializers \ |
| 39 | -Wno-initializer-overrides \ |
| 40 | -Wno-mismatched-tags \ |
Emil Velikov | 488b3ed | 2013-07-25 23:45:45 +0100 | [diff] [blame] | 41 | -DPACKAGE_VERSION=\"$(MESA_VERSION)\" \ |
Chad Versace | e34fe8b | 2013-03-18 13:56:28 -0700 | [diff] [blame] | 42 | -DPACKAGE_BUGREPORT=\"https://bugs.freedesktop.org/enter_bug.cgi?product=Mesa\" \ |
Chad Versace | 56c6cdc | 2012-12-20 14:14:51 -0800 | [diff] [blame] | 43 | -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] | 44 | |
Chia-I Wu | c9b21d9 | 2011-08-17 11:07:01 +0800 | [diff] [blame] | 45 | LOCAL_CFLAGS += \ |
Emil Velikov | 9f8dc3b | 2017-01-18 19:40:31 +0000 | [diff] [blame] | 46 | -DENABLE_SHADER_CACHE \ |
Emil Velikov | 39a175e | 2015-03-27 20:10:35 +0000 | [diff] [blame] | 47 | -DHAVE___BUILTIN_EXPECT \ |
| 48 | -DHAVE___BUILTIN_FFS \ |
| 49 | -DHAVE___BUILTIN_FFSLL \ |
| 50 | -DHAVE_FUNC_ATTRIBUTE_FLATTEN \ |
| 51 | -DHAVE_FUNC_ATTRIBUTE_UNUSED \ |
| 52 | -DHAVE_FUNC_ATTRIBUTE_FORMAT \ |
| 53 | -DHAVE_FUNC_ATTRIBUTE_PACKED \ |
Tapani Pälli | 4148881 | 2017-01-19 09:10:34 +0200 | [diff] [blame] | 54 | -DHAVE_FUNC_ATTRIBUTE_ALIAS \ |
Emil Velikov | 39a175e | 2015-03-27 20:10:35 +0000 | [diff] [blame] | 55 | -DHAVE___BUILTIN_CTZ \ |
| 56 | -DHAVE___BUILTIN_POPCOUNT \ |
| 57 | -DHAVE___BUILTIN_POPCOUNTLL \ |
| 58 | -DHAVE___BUILTIN_CLZ \ |
| 59 | -DHAVE___BUILTIN_CLZLL \ |
| 60 | -DHAVE___BUILTIN_UNREACHABLE \ |
Matt Turner | 814345f | 2012-09-18 22:09:26 -0700 | [diff] [blame] | 61 | -DHAVE_PTHREAD=1 \ |
WuZhen | ea4c1af | 2016-04-28 15:34:58 +0800 | [diff] [blame] | 62 | -DHAVE_DLOPEN \ |
Mauro Rossi | 41b5620 | 2017-02-18 23:10:24 +0100 | [diff] [blame] | 63 | -DHAVE_DL_ITERATE_PHDR \ |
Chia-I Wu | c9b21d9 | 2011-08-17 11:07:01 +0800 | [diff] [blame] | 64 | -fvisibility=hidden \ |
| 65 | -Wno-sign-compare |
| 66 | |
Emil Velikov | 13e2928 | 2017-01-26 13:24:02 +0000 | [diff] [blame] | 67 | LOCAL_CPPFLAGS += \ |
| 68 | -D__STDC_CONSTANT_MACROS \ |
| 69 | -D__STDC_FORMAT_MACROS \ |
| 70 | -D__STDC_LIMIT_MACROS |
| 71 | |
Rob Herring | 1f53a57 | 2016-02-02 14:45:08 -0600 | [diff] [blame] | 72 | # mesa requires at least c99 compiler |
| 73 | LOCAL_CONLYFLAGS += \ |
| 74 | -std=c99 |
| 75 | |
Chia-I Wu | c9b21d9 | 2011-08-17 11:07:01 +0800 | [diff] [blame] | 76 | ifeq ($(strip $(MESA_ENABLE_ASM)),true) |
| 77 | ifeq ($(TARGET_ARCH),x86) |
| 78 | LOCAL_CFLAGS += \ |
Tapani Pälli | 57c57df | 2012-08-16 13:59:12 +0300 | [diff] [blame] | 79 | -DUSE_X86_ASM \ |
Tapani Pälli | 57c57df | 2012-08-16 13:59:12 +0300 | [diff] [blame] | 80 | |
Chia-I Wu | c9b21d9 | 2011-08-17 11:07:01 +0800 | [diff] [blame] | 81 | endif |
| 82 | endif |
| 83 | |
Chih-Wei Huang | 1842832 | 2015-05-20 11:25:34 +0800 | [diff] [blame] | 84 | ifeq ($(MESA_ENABLE_LLVM),true) |
Mauro Rossi | 9c45bb7 | 2017-01-30 20:57:30 +0100 | [diff] [blame] | 85 | ifeq ($(MESA_ANDROID_MAJOR_VERSION),5) |
| 86 | LOCAL_CFLAGS += -DHAVE_LLVM=0x0305 -DMESA_LLVM_VERSION_PATCH=2 |
| 87 | ELF_INCLUDES := external/elfutils/0.153/libelf |
| 88 | endif |
| 89 | ifeq ($(MESA_ANDROID_MAJOR_VERSION),6) |
| 90 | LOCAL_CFLAGS += -DHAVE_LLVM=0x0307 -DMESA_LLVM_VERSION_PATCH=0 |
| 91 | ELF_INCLUDES := external/elfutils/src/libelf |
| 92 | endif |
| 93 | ifeq ($(MESA_ANDROID_MAJOR_VERSION),7) |
| 94 | LOCAL_CFLAGS += -DHAVE_LLVM=0x0308 -DMESA_LLVM_VERSION_PATCH=0 |
| 95 | ELF_INCLUDES := external/elfutils/libelf |
| 96 | endif |
Chih-Wei Huang | 1842832 | 2015-05-20 11:25:34 +0800 | [diff] [blame] | 97 | endif |
| 98 | |
Chih-Wei Huang | e3e5b1a | 2016-10-28 17:54:17 +0800 | [diff] [blame] | 99 | ifneq ($(LOCAL_IS_HOST_MODULE),true) |
Rob Herring | 112e988 | 2016-06-07 18:27:34 -0500 | [diff] [blame] | 100 | # add libdrm if there are hardware drivers |
| 101 | ifneq ($(filter-out swrast,$(MESA_GPU_DRIVERS)),) |
| 102 | LOCAL_CFLAGS += -DHAVE_LIBDRM |
| 103 | LOCAL_SHARED_LIBRARIES += libdrm |
| 104 | endif |
Chih-Wei Huang | e3e5b1a | 2016-10-28 17:54:17 +0800 | [diff] [blame] | 105 | endif |
Rob Herring | 112e988 | 2016-06-07 18:27:34 -0500 | [diff] [blame] | 106 | |
Chia-I Wu | c9b21d9 | 2011-08-17 11:07:01 +0800 | [diff] [blame] | 107 | LOCAL_CPPFLAGS += \ |
Chih-Wei Huang | c5e11e5 | 2015-05-20 11:25:39 +0800 | [diff] [blame] | 108 | $(if $(filter true,$(MESA_LOLLIPOP_BUILD)),-D_USING_LIBCXX) \ |
Chia-I Wu | c9b21d9 | 2011-08-17 11:07:01 +0800 | [diff] [blame] | 109 | -Wno-error=non-virtual-dtor \ |
| 110 | -Wno-non-virtual-dtor |
| 111 | |
Rob Herring | fc1806e | 2016-05-03 21:02:39 -0500 | [diff] [blame] | 112 | ifeq ($(MESA_LOLLIPOP_BUILD),true) |
| 113 | LOCAL_CFLAGS_32 += -DDEFAULT_DRIVER_DIR=\"/system/lib/$(MESA_DRI_MODULE_REL_PATH)\" |
| 114 | LOCAL_CFLAGS_64 += -DDEFAULT_DRIVER_DIR=\"/system/lib64/$(MESA_DRI_MODULE_REL_PATH)\" |
| 115 | else |
| 116 | LOCAL_CFLAGS += -DDEFAULT_DRIVER_DIR=\"/system/lib/$(MESA_DRI_MODULE_REL_PATH)\" |
| 117 | endif |
| 118 | |
Chia-I Wu | c9b21d9 | 2011-08-17 11:07:01 +0800 | [diff] [blame] | 119 | # uncomment to keep the debug symbols |
| 120 | #LOCAL_STRIP_MODULE := false |
| 121 | |
| 122 | ifeq ($(strip $(LOCAL_MODULE_TAGS)),) |
| 123 | LOCAL_MODULE_TAGS := optional |
| 124 | endif |
Rob Herring | 0663edf | 2016-02-24 12:56:27 -0600 | [diff] [blame] | 125 | |
| 126 | # Quiet down the build system and remove any .h files from the sources |
| 127 | LOCAL_SRC_FILES := $(patsubst %.h, , $(LOCAL_SRC_FILES)) |
Mauro Rossi | 6facb0c | 2017-03-04 22:11:27 +0100 | [diff] [blame] | 128 | |
| 129 | LOCAL_SHARED_LIBRARIES += libz |