From 5b80bfd7bffd4c20d80b7c70a7130529e9a755dd Mon Sep 17 00:00:00 2001 From: ToshikazuOhiwa Date: Mon, 30 Mar 2020 09:24:26 +0900 Subject: agl-basesystem --- .../poky/meta/recipes-devtools/ccache/ccache.inc | 16 ++++++++++++ .../meta/recipes-devtools/ccache/ccache_3.4.2.bb | 11 ++++++++ .../0002-dev.mk.in-fix-file-name-too-long.patch | 30 ++++++++++++++++++++++ 3 files changed, 57 insertions(+) create mode 100644 external/poky/meta/recipes-devtools/ccache/ccache.inc create mode 100644 external/poky/meta/recipes-devtools/ccache/ccache_3.4.2.bb create mode 100644 external/poky/meta/recipes-devtools/ccache/files/0002-dev.mk.in-fix-file-name-too-long.patch (limited to 'external/poky/meta/recipes-devtools/ccache') diff --git a/external/poky/meta/recipes-devtools/ccache/ccache.inc b/external/poky/meta/recipes-devtools/ccache/ccache.inc new file mode 100644 index 00000000..65663289 --- /dev/null +++ b/external/poky/meta/recipes-devtools/ccache/ccache.inc @@ -0,0 +1,16 @@ +SUMMARY = "a fast C/C++ compiler cache" +DESCRIPTION = "ccache is a compiler cache. It speeds up recompilation \ +by caching the result of previous compilations and detecting when the \ +same compilation is being done again. Supported languages are C, C\+\+, \ +Objective-C and Objective-C++." +HOMEPAGE = "http://ccache.samba.org" +SECTION = "devel" +LICENSE = "GPLv3+" + +DEPENDS = "zlib" + +SRC_URI = "https://download.samba.org/pub/${BPN}/${BP}.tar.xz" + +inherit autotools + +BBCLASSEXTEND = "native" diff --git a/external/poky/meta/recipes-devtools/ccache/ccache_3.4.2.bb b/external/poky/meta/recipes-devtools/ccache/ccache_3.4.2.bb new file mode 100644 index 00000000..72309348 --- /dev/null +++ b/external/poky/meta/recipes-devtools/ccache/ccache_3.4.2.bb @@ -0,0 +1,11 @@ +require ccache.inc + +LICENSE = "GPLv3+" +LIC_FILES_CHKSUM = "file://LICENSE.adoc;md5=2722abeaf1750dbf175b9491112374e1" + +SRC_URI[md5sum] = "9e048f88f3897125864f9a5e1abfb72d" +SRC_URI[sha256sum] = "18a8b14367d63d3d37fb6c33cba60e1b7fcd7a63d608df97c9771ae0d234fee2" + +SRC_URI += " \ + file://0002-dev.mk.in-fix-file-name-too-long.patch \ +" diff --git a/external/poky/meta/recipes-devtools/ccache/files/0002-dev.mk.in-fix-file-name-too-long.patch b/external/poky/meta/recipes-devtools/ccache/files/0002-dev.mk.in-fix-file-name-too-long.patch new file mode 100644 index 00000000..68c2371f --- /dev/null +++ b/external/poky/meta/recipes-devtools/ccache/files/0002-dev.mk.in-fix-file-name-too-long.patch @@ -0,0 +1,30 @@ +From 7dab2995ed8eeccd7b0acd79668bc28f3a2427d5 Mon Sep 17 00:00:00 2001 +From: Robert Yang +Date: Wed, 16 Sep 2015 19:45:40 -0700 +Subject: [PATCH] dev.mk.in: fix file name too long + +The all_cppflags change paths to filename which cause file name too long +error when the path is longer than NAME_MAX (usually 255). Strip srcdir +to fix the problem. + +Upstream-Status: Pending + +Signed-off-by: Robert Yang + +--- + dev.mk.in | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/dev.mk.in b/dev.mk.in +index 91b0a57..583ade0 100644 +--- a/dev.mk.in ++++ b/dev.mk.in +@@ -1,7 +1,7 @@ + # GNU make syntax reigns in this file. + + all_cflags += -Werror +-all_cppflags += -MD -MP -MF .deps/$(subst .._,,$(subst /,_,$<)).d ++all_cppflags += -MD -MP -MF .deps/$(subst .._,,$(subst /,_,$(subst $(srcdir)/,,$<))).d + + A2X = a2x + ASCIIDOC = asciidoc -- cgit 1.2.3-korg