e831353d8f
Fixes compatibility with GCC-11. Doesn't require any local patches (all applied upstream or no longer required). LICENSE adds three new licenses: - MIT for code copied from libunwind; - Apple Public Source License for Mac-specific code; - BSD-4-Clause also for Mac-specific code. Since the latter two are Mac-specific, we don't mention them in _LICENSE. linux-syscall-support bumped to the verion in DEPS. It now has a license file so use that instead of the header file. Signed-off-by: Nuno Gonçalves <nunojpg@gmail.com> [Arnout: update licenses, license files and hashes] Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
43 lines
1.5 KiB
Makefile
43 lines
1.5 KiB
Makefile
################################################################################
|
|
#
|
|
# google-breakpad
|
|
#
|
|
################################################################################
|
|
|
|
GOOGLE_BREAKPAD_VERSION = c85eb4a59b618f3beaad5445ceb1f865ffa8efdf
|
|
GOOGLE_BREAKPAD_SITE = https://chromium.googlesource.com/breakpad/breakpad
|
|
GOOGLE_BREAKPAD_SITE_METHOD = git
|
|
GOOGLE_BREAKPAD_CONF_OPTS = --disable-processor --disable-tools
|
|
# Only a static library is installed
|
|
GOOGLE_BREAKPAD_INSTALL_TARGET = NO
|
|
GOOGLE_BREAKPAD_INSTALL_STAGING = YES
|
|
GOOGLE_BREAKPAD_LICENSE = BSD-3-Clause, MIT
|
|
GOOGLE_BREAKPAD_LICENSE_FILES = LICENSE
|
|
GOOGLE_BREAKPAD_DEPENDENCIES = host-google-breakpad linux-syscall-support
|
|
|
|
HOST_GOOGLE_BREAKPAD_DEPENDENCIES = host-linux-syscall-support
|
|
|
|
# Avoid using depot-tools to download this file.
|
|
define HOST_GOOGLE_BREAKPAD_LSS
|
|
$(INSTALL) -D -m 0644 \
|
|
$(HOST_DIR)/include/linux_syscall_support.h \
|
|
$(@D)/src/third_party/lss/linux_syscall_support.h
|
|
endef
|
|
HOST_GOOGLE_BREAKPAD_PRE_CONFIGURE_HOOKS += HOST_GOOGLE_BREAKPAD_LSS
|
|
|
|
define GOOGLE_BREAKPAD_LSS
|
|
$(INSTALL) -D -m 0644 \
|
|
$(STAGING_DIR)/usr/include/linux_syscall_support.h \
|
|
$(@D)/src/third_party/lss/linux_syscall_support.h
|
|
endef
|
|
GOOGLE_BREAKPAD_PRE_CONFIGURE_HOOKS += GOOGLE_BREAKPAD_LSS
|
|
|
|
define GOOGLE_BREAKPAD_EXTRACT_SYMBOLS
|
|
$(EXTRA_ENV) package/google-breakpad/gen-syms.sh $(STAGING_DIR) \
|
|
$(TARGET_DIR) $(call qstrip,$(BR2_GOOGLE_BREAKPAD_INCLUDE_FILES))
|
|
endef
|
|
GOOGLE_BREAKPAD_TARGET_FINALIZE_HOOKS += GOOGLE_BREAKPAD_EXTRACT_SYMBOLS
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|