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>
30 lines
1.0 KiB
Makefile
30 lines
1.0 KiB
Makefile
################################################################################
|
|
#
|
|
# linux-syscall-support
|
|
#
|
|
################################################################################
|
|
|
|
# Use the same version that the one used by Google-breakpad (see DEPS file)
|
|
LINUX_SYSCALL_SUPPORT_VERSION = e1e7b0ad8ee99a875b272c8e33e308472e897660
|
|
LINUX_SYSCALL_SUPPORT_SITE = https://chromium.googlesource.com/linux-syscall-support
|
|
LINUX_SYSCALL_SUPPORT_SITE_METHOD = git
|
|
LINUX_SYSCALL_SUPPORT_LICENSE = BSD-3-Clause
|
|
LINUX_SYSCALL_SUPPORT_LICENSE_FILES = LICENSE
|
|
|
|
# Provide only one header file.
|
|
LINUX_SYSCALL_SUPPORT_INSTALL_TARGET = NO
|
|
LINUX_SYSCALL_SUPPORT_INSTALL_STAGING = YES
|
|
|
|
define LINUX_SYSCALL_SUPPORT_INSTALL_STAGING_CMDS
|
|
$(INSTALL) -D -m 0644 $(@D)/linux_syscall_support.h \
|
|
$(STAGING_DIR)/usr/include/linux_syscall_support.h
|
|
endef
|
|
|
|
define HOST_LINUX_SYSCALL_SUPPORT_INSTALL_CMDS
|
|
$(INSTALL) -D -m 0644 $(@D)/linux_syscall_support.h \
|
|
$(HOST_DIR)/include/linux_syscall_support.h
|
|
endef
|
|
|
|
$(eval $(generic-package))
|
|
$(eval $(host-generic-package))
|