mirror of
https://git.busybox.net/buildroot.git
synced 2025-01-06 12:23:24 +08:00
848404ed7b
Fix the following build failure with libexecinfo raised since bump to
version 22.4.3 in commit dd1c8879c5
:
/home/giuliobenetti/autobuild/run/instance-2/output-1/build/intel-mediadriver-22.5.1/media_softlet/linux/common/os/osservice/mos_utilities_specific.cpp:2481: undefined reference to `backtrace'
Fixes:
- http://autobuild.buildroot.org/results/3316e39c5113bb7600374eda45497a87c9ac9873
- http://autobuild.buildroot.org/results/1074e832dd2f67e6fea8ff1fc7e226245a4d51bd
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
46 lines
1.3 KiB
Makefile
46 lines
1.3 KiB
Makefile
################################################################################
|
|
#
|
|
# intel-mediadriver
|
|
#
|
|
################################################################################
|
|
|
|
# based on https://software.intel.com/en-us/articles/build-and-debug-open-source-media-stack
|
|
|
|
INTEL_MEDIADRIVER_VERSION = 22.5.1
|
|
INTEL_MEDIADRIVER_SITE = https://github.com/intel/media-driver/archive
|
|
INTEL_MEDIADRIVER_SOURCE= intel-media-$(INTEL_MEDIADRIVER_VERSION).tar.gz
|
|
INTEL_MEDIADRIVER_LICENSE = MIT, BSD-3-Clause
|
|
INTEL_MEDIADRIVER_LICENSE_FILES = LICENSE.md
|
|
|
|
INTEL_MEDIADRIVER_DEPENDENCIES = \
|
|
intel-gmmlib \
|
|
libpciaccess \
|
|
libva \
|
|
mesa3d
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBEXECINFO),y)
|
|
INTEL_MEDIADRIVER_DEPENDENCIES += libexecinfo
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_XLIB_LIBX11),y)
|
|
INTEL_MEDIADRIVER_DEPENDENCIES += xlib_libX11
|
|
endif
|
|
|
|
INTEL_MEDIADRIVER_SUPPORTS_IN_SOURCE_BUILD = NO
|
|
|
|
# hardening is disabled here, so that the top-level Buildroot options
|
|
# control which hardening features are enabled
|
|
INTEL_MEDIADRIVER_CONF_OPTS = \
|
|
-DINSTALL_DRIVER_SYSCONF=OFF \
|
|
-DMEDIA_BUILD_FATAL_WARNINGS=OFF \
|
|
-DMEDIA_RUN_TEST_SUITE=OFF \
|
|
-DMEDIA_BUILD_HARDENING=OFF
|
|
|
|
ifeq ($(BR2_PACKAGE_INTEL_MEDIADRIVER_GEN8),y)
|
|
INTEL_MEDIADRIVER_CONF_OPTS += -DGEN8=ON
|
|
else
|
|
INTEL_MEDIADRIVER_CONF_OPTS += -DGEN8=OFF
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|