30128ef4d0
This version add the C++11 support and microdump. Add the C++11 dependency since it's now mendatory. Use the same linux-syscall-support version as the one defined by DEPS file in the Google-breakpad sources. Signed-off-by: Romain Naour <romain.naour@gmail.com> Cc: Pascal Huerst <pascal.huerst@gmail.com> Cc: Frank Hunleth <fhunleth@troodon-software.com> [Thomas: propagate the C++11 related dependency to BR2_GOOGLE_BREAKPAD_ENABLE.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
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 = 3f6478ac95edf86cd3da300c2c0d34a438f5dbeb
|
|
LINUX_SYSCALL_SUPPORT_SITE = https://chromium.googlesource.com/linux-syscall-support
|
|
LINUX_SYSCALL_SUPPORT_SITE_METHOD = git
|
|
LINUX_SYSCALL_SUPPORT_LICENSE = BSD-3c
|
|
LINUX_SYSCALL_SUPPORT_LICENSE_FILES = linux_syscall_support.h
|
|
|
|
# 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)/usr/include/linux_syscall_support.h
|
|
endef
|
|
|
|
$(eval $(host-generic-package))
|
|
$(eval $(generic-package))
|