95ad161fe9
Currently, for a static-only build, we pass -Dstatic-libc=true. The reason for that was not recorded when the package was converted to meson. The -Dstatic-libc=true option, despite its name, is not about linking statically against libc, but against libgcc and libstdc++. In Buildroot, we forcibly pass -static when calling the compiler and linker, so everything is already linked statically. For a shared build, -Dstatic-libc=false has no effect at all. Drop this option altogether, as it is not needed, and is confusing. Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com> [yann.morin.1998@free.fr: expand commit log] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
44 lines
1.2 KiB
Makefile
44 lines
1.2 KiB
Makefile
################################################################################
|
|
#
|
|
# kmsxx
|
|
#
|
|
################################################################################
|
|
|
|
KMSXX_VERSION = 548905611c130ea9d31929a0caf7a198d8bac462
|
|
KMSXX_SITE = $(call github,tomba,kmsxx,$(KMSXX_VERSION))
|
|
KMSXX_LICENSE = MPL-2.0
|
|
KMSXX_LICENSE_FILES = LICENSE
|
|
KMSXX_INSTALL_STAGING = YES
|
|
KMSXX_DEPENDENCIES = fmt libdrm host-pkgconf
|
|
KMSXX_CONF_OPTS = \
|
|
-Dkmscube=false \
|
|
-Dpykms=disabled \
|
|
-Domap=disabled \
|
|
-Duse-system-fmt=true \
|
|
-Duse-system-pybind11=true
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_GCC_BUG_85180),y)
|
|
KMSXX_CXXFLAGS += $(TARGET_CXXFLAGS) -O0
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_KMSXX_INSTALL_TESTS),y)
|
|
KMSXX_CONF_OPTS += -Dutils=true
|
|
# extra handling for some utils not installed by default
|
|
KMSXX_EXTRA_UTILS = kmsview kmscapture omap-wbcap omap-wbm2m
|
|
ifeq ($(BR2_PACKAGE_LIBEVDEV),y)
|
|
KMSXX_DEPENDENCIES += libevdev
|
|
KMSXX_EXTRA_UTILS += kmstouch
|
|
endif
|
|
define KMSXX_INSTALL_EXTRA_UTILS
|
|
$(foreach t,$(KMSXX_EXTRA_UTILS),\
|
|
$(INSTALL) -D -m 0755 $(@D)/build/utils/$(t) \
|
|
$(TARGET_DIR)/usr/bin/$(t)
|
|
)
|
|
endef
|
|
KMSXX_POST_INSTALL_TARGET_HOOKS += KMSXX_INSTALL_EXTRA_UTILS
|
|
else
|
|
KMSXX_CONF_OPTS += -Dutils=false
|
|
endif
|
|
|
|
$(eval $(meson-package))
|