bc4cc27705
Fix the following build failure raised on uclibc and musl since the
addition of libexecinfo package in commit
eea8ba446c
:
/home/peko/autobuild/instance-1/output-1/host/opt/ext-toolchain/bin/../lib/gcc/arm-buildroot-linux-uclibcgnueabi/10.3.0/../../../../arm-buildroot-linux-uclibcgnueabi/bin/ld: ../../build/lib/libvcos.so: undefined reference to `backtrace_symbols'
Fixes:
- http://autobuild.buildroot.org/results/93d3b8cc2ac5dfa9d4b44946c0b4d8171e8f52a1
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
51 lines
1.4 KiB
Makefile
51 lines
1.4 KiB
Makefile
################################################################################
|
|
#
|
|
# rpi-userland
|
|
#
|
|
################################################################################
|
|
|
|
RPI_USERLAND_VERSION = 14b90ff9d9f031391a299e6e006965d02bfd1bb1
|
|
RPI_USERLAND_SITE = $(call github,raspberrypi,userland,$(RPI_USERLAND_VERSION))
|
|
RPI_USERLAND_LICENSE = BSD-3-Clause
|
|
RPI_USERLAND_LICENSE_FILES = LICENCE
|
|
RPI_USERLAND_INSTALL_STAGING = YES
|
|
RPI_USERLAND_CONF_OPTS = -DVMCS_INSTALL_PREFIX=/usr
|
|
|
|
RPI_USERLAND_PROVIDES = libegl libgles libopenmax libopenvg
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBEXECINFO),y)
|
|
RPI_USERLAND_DEPENDENCIES += libexecinfo
|
|
RPI_USERLAND_CONF_OPTS += -DCMAKE_EXE_LINKER_FLAGS=-lexecinfo
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_RPI_USERLAND_HELLO),y)
|
|
|
|
RPI_USERLAND_CONF_OPTS += -DALL_APPS=ON
|
|
|
|
define RPI_USERLAND_EXTRA_LIBS_TARGET
|
|
$(INSTALL) -m 0644 -D \
|
|
$(@D)/build/lib/libilclient.so \
|
|
$(TARGET_DIR)/usr/lib/libilclient.so
|
|
endef
|
|
RPI_USERLAND_POST_INSTALL_TARGET_HOOKS += RPI_USERLAND_EXTRA_LIBS_TARGET
|
|
|
|
define RPI_USERLAND_EXTRA_LIBS_STAGING
|
|
$(INSTALL) -m 0644 -D \
|
|
$(@D)/build/lib/libilclient.so \
|
|
$(STAGING_DIR)/usr/lib/libilclient.so
|
|
endef
|
|
RPI_USERLAND_POST_INSTALL_STAGING_HOOKS += RPI_USERLAND_EXTRA_LIBS_STAGING
|
|
|
|
else
|
|
|
|
RPI_USERLAND_CONF_OPTS += -DALL_APPS=OFF
|
|
|
|
endif # BR2_PACKAGE_RPI_USERLAND_HELLO
|
|
|
|
define RPI_USERLAND_POST_TARGET_CLEANUP
|
|
rm -Rf $(TARGET_DIR)/usr/src
|
|
endef
|
|
RPI_USERLAND_POST_INSTALL_TARGET_HOOKS += RPI_USERLAND_POST_TARGET_CLEANUP
|
|
|
|
$(eval $(cmake-package))
|