aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/ccache/ccache.inc
diff options
context:
space:
mode:
authorWenzong Fan <wenzong.fan@windriver.com>2011-06-24 15:38:24 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-06-30 20:47:11 +0100
commit43416be5ccb66f93e395fdd8d0e19327f848cbe2 (patch)
tree4af8b81a90c59b77fe8427dcef249896fbd4d5b2 /meta/recipes-devtools/ccache/ccache.inc
parent0cfa7ebcf661aa0645c6d4d858b04946ebacb7e4 (diff)
downloadopenembedded-core-43416be5ccb66f93e395fdd8d0e19327f848cbe2.tar.gz
ccache: Integrate ccache-native to poky
Add ccache as a native tool and put its recipe files to: 'meta/recipes-devtools/ccache'. Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com>
Diffstat (limited to 'meta/recipes-devtools/ccache/ccache.inc')
-rw-r--r--meta/recipes-devtools/ccache/ccache.inc16
1 files changed, 16 insertions, 0 deletions
diff --git a/meta/recipes-devtools/ccache/ccache.inc b/meta/recipes-devtools/ccache/ccache.inc
new file mode 100644
index 0000000000..e9f7344643
--- /dev/null
+++ b/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+"
+
+SRC_URI = "http://samba.org/ftp/ccache/ccache-${PV}.tar.gz"
+
+inherit autotools
+
+BBCLASSEXTEND = "native"
+
+TARGET_CC_ARCH += "${LDFLAGS}"