mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 06:07:59 +00:00
38d731bd79
* Switch mesa support from DRI to gallium Supported drivers are - softpipe (Sebstian Sumpf) - iris for Intel GPUs (Alexander Boetcher) - etnaviv for Vivante GPUs (Josef Söntgen) * Mesa's generated files are placed into 'contrib/mesa-<hash>/generated' and are cloned per default from a separate Git repo in order to avoid hash updates upon package build. In case you need to generate files yourself use ! prepare_port mesa GENERATE_FILES=1 issue #4254
11 lines
353 B
Makefile
11 lines
353 B
Makefile
ifeq ($(CONTRIB_DIR),)
|
|
DRM_SRC_DIR = $(realpath $(call select_from_repositories,include/drm)/../..)
|
|
else
|
|
DRM_SRC_DIR = $(call select_from_ports,libdrm)/src/lib/libdrm
|
|
endif
|
|
|
|
INC_DIR += $(DRM_SRC_DIR)
|
|
INC_DIR += $(addprefix $(DRM_SRC_DIR)/,include/drm include)
|
|
INC_DIR += $(addprefix $(DRM_SRC_DIR)/,etnaviv)
|
|
INC_DIR += $(addprefix $(DRM_SRC_DIR)/,iris)
|