blob: 9203c87a4e358f079aa29448d17bdeb615a989f3 [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
24# BOARD_GPU_DRIVERS should be defined. The valid values are
25#
Chia-I Wu64492982011-08-31 12:31:02 +080026# classic drivers: i915 i965
Eric Anholt7029ec02017-05-08 15:57:21 -070027# gallium drivers: swrast freedreno i915g nouveau pl111 r300g r600g radeonsi vc4 virgl vmwgfx
Chia-I Wuc9b21d92011-08-17 11:07:01 +080028#
Chia-I Wu099faee2011-08-19 17:11:34 +080029# The main target is libGLES_mesa. For each classic driver enabled, a DRI
30# module will also be built. DRI modules will be loaded by libGLES_mesa.
Chia-I Wuc9b21d92011-08-17 11:07:01 +080031
32MESA_TOP := $(call my-dir)
Chad Versace56c6cdc2012-12-20 14:14:51 -080033
34MESA_ANDROID_MAJOR_VERSION := $(word 1, $(subst ., , $(PLATFORM_VERSION)))
Rob Herringd5a93652017-05-23 14:41:22 -050035ifneq ($(filter 2 4, $(MESA_ANDROID_MAJOR_VERSION)),)
36$(error "Android 4.4 and earlier not supported")
37endif
Chad Versace56c6cdc2012-12-20 14:14:51 -080038
Rob Herring8949edf2016-02-24 12:56:28 -060039MESA_DRI_MODULE_REL_PATH := dri
40MESA_DRI_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/$(MESA_DRI_MODULE_REL_PATH)
41MESA_DRI_MODULE_UNSTRIPPED_PATH := $(TARGET_OUT_SHARED_LIBRARIES_UNSTRIPPED)/$(MESA_DRI_MODULE_REL_PATH)
42
Chia-I Wuc9b21d92011-08-17 11:07:01 +080043MESA_COMMON_MK := $(MESA_TOP)/Android.common.mk
44MESA_PYTHON2 := python
45
Rob Herring3f097392017-05-03 14:35:20 -050046# Lists to convert driver names to boolean variables
47# in form of <driver name>.<boolean make variable>
48classic_drivers := i915.HAVE_I915_DRI i965.HAVE_I965_DRI
49gallium_drivers := \
50 swrast.HAVE_GALLIUM_SOFTPIPE \
51 freedreno.HAVE_GALLIUM_FREEDRENO \
52 i915g.HAVE_GALLIUM_I915 \
53 nouveau.HAVE_GALLIUM_NOUVEAU \
Eric Anholt7029ec02017-05-08 15:57:21 -070054 pl111.HAVE_GALLIUM_PL111 \
Rob Herring3f097392017-05-03 14:35:20 -050055 r300g.HAVE_GALLIUM_R300 \
56 r600g.HAVE_GALLIUM_R600 \
57 radeonsi.HAVE_GALLIUM_RADEONSI \
58 vmwgfx.HAVE_GALLIUM_VMWGFX \
59 vc4.HAVE_GALLIUM_VC4 \
60 virgl.HAVE_GALLIUM_VIRGL
Chia-I Wuc9b21d92011-08-17 11:07:01 +080061
Rob Herring4c0c3712017-05-03 14:35:21 -050062ifeq ($(BOARD_GPU_DRIVERS),all)
63MESA_BUILD_CLASSIC := $(filter HAVE_%, $(subst ., , $(classic_drivers)))
64MESA_BUILD_GALLIUM := $(filter HAVE_%, $(subst ., , $(gallium_drivers)))
65else
Rob Herring3f097392017-05-03 14:35:20 -050066# Warn if we have any invalid driver names
67$(foreach d, $(BOARD_GPU_DRIVERS), \
68 $(if $(findstring $(d).,$(classic_drivers) $(gallium_drivers)), \
69 , \
70 $(warning invalid GPU driver: $(d)) \
71 ) \
72)
73MESA_BUILD_CLASSIC := $(strip $(foreach d, $(BOARD_GPU_DRIVERS), $(patsubst $(d).%,%, $(filter $(d).%, $(classic_drivers)))))
74MESA_BUILD_GALLIUM := $(strip $(foreach d, $(BOARD_GPU_DRIVERS), $(patsubst $(d).%,%, $(filter $(d).%, $(gallium_drivers)))))
Rob Herring4c0c3712017-05-03 14:35:21 -050075endif
Rob Herring3f097392017-05-03 14:35:20 -050076$(foreach d, $(MESA_BUILD_CLASSIC) $(MESA_BUILD_GALLIUM), $(eval $(d) := true))
Chia-I Wuc9b21d92011-08-17 11:07:01 +080077
78# host and target must be the same arch to generate matypes.h
79ifeq ($(TARGET_ARCH),$(HOST_ARCH))
80MESA_ENABLE_ASM := true
81else
82MESA_ENABLE_ASM := false
83endif
84
Rob Herring3f097392017-05-03 14:35:20 -050085ifneq ($(filter true, $(HAVE_GALLIUM_RADEONSI)),)
86MESA_ENABLE_LLVM := true
Chia-I Wuc9b21d92011-08-17 11:07:01 +080087endif
88
Rob Herring26aee6f2017-05-03 14:35:24 -050089define mesa-build-with-llvm
90 $(if $(filter $(MESA_ANDROID_MAJOR_VERSION), 4 5), \
91 $(warning Unsupported LLVM version in Android $(MESA_ANDROID_MAJOR_VERSION)),) \
92 $(if $(filter 6,$(MESA_ANDROID_MAJOR_VERSION)), \
93 $(eval LOCAL_CFLAGS += -DHAVE_LLVM=0x0307 -DMESA_LLVM_VERSION_PATCH=0) \
94 $(eval LOCAL_STATIC_LIBRARIES += libLLVMCore) \
95 $(eval LOCAL_C_INCLUDES += external/llvm/include external/llvm/device/include),) \
96 $(if $(filter 7,$(MESA_ANDROID_MAJOR_VERSION)), \
97 $(eval LOCAL_CFLAGS += -DHAVE_LLVM=0x0308 -DMESA_LLVM_VERSION_PATCH=0) \
98 $(eval LOCAL_STATIC_LIBRARIES += libLLVMCore) \
Rob Herringd31a2b42017-05-03 14:35:25 -050099 $(eval LOCAL_C_INCLUDES += external/llvm/include external/llvm/device/include),) \
100 $(if $(filter O,$(MESA_ANDROID_MAJOR_VERSION)), \
101 $(eval LOCAL_CFLAGS += -DHAVE_LLVM=0x0309 -DMESA_LLVM_VERSION_PATCH=0) \
102 $(eval LOCAL_HEADER_LIBRARIES += llvm-headers),)
Rob Herring26aee6f2017-05-03 14:35:24 -0500103endef
104
Chia-I Wu4d3d6f72011-11-26 11:06:02 +0800105# add subdirectories
Chia-I Wu2a77dc02011-08-17 11:24:11 +0800106SUBDIRS := \
Rob Herringbdfa6352016-05-03 21:02:42 -0500107 src/gbm \
Emil Velikov8c2e7fd2014-01-10 23:36:16 +0000108 src/loader \
Chia-I Wuee41fc82011-08-17 12:10:12 +0800109 src/mapi \
Emil Velikov1a882fd2016-01-18 10:47:13 +0200110 src/compiler \
Chia-I Wuee40f182011-08-17 11:31:36 +0800111 src/mesa \
Tomasz Figad703abf2014-09-27 16:19:59 +0200112 src/util \
Emil Velikov1040a862015-07-14 00:28:10 +0100113 src/egl \
Mauro Rossi6b9d7e62016-09-13 01:15:16 +0200114 src/amd \
Eric Anholt7f80a9f2016-10-26 10:14:37 -0700115 src/broadcom \
Mauro Rossicd18bbe2016-08-27 17:19:34 +0200116 src/intel \
Mauro Rossi3f2cb692017-02-28 01:24:41 +0100117 src/mesa/drivers/dri \
118 src/vulkan
Chia-I Wu099faee2011-08-19 17:11:34 +0800119
Rob Herringdbbf7a82016-04-28 14:02:01 -0500120INC_DIRS := $(call all-named-subdir-makefiles,$(SUBDIRS))
Rob Herringdbbf7a82016-04-28 14:02:01 -0500121INC_DIRS += $(call all-named-subdir-makefiles,src/gallium)
Rob Herringdbbf7a82016-04-28 14:02:01 -0500122include $(INC_DIRS)