2020-12-23 09:16:17 +00:00
|
|
|
#
|
2015-06-23 05:21:45 +00:00
|
|
|
# Copyright (C) 2006-2015 OpenWrt.org
|
2006-12-11 16:42:57 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
include $(INCLUDE_DIR)/target.mk
|
|
|
|
|
|
|
|
PKG_NAME:=ccache
|
2020-12-23 09:16:17 +00:00
|
|
|
PKG_VERSION:=4.1
|
2006-12-11 16:42:57 +00:00
|
|
|
|
2012-04-02 16:25:08 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
2019-04-29 05:26:36 +00:00
|
|
|
PKG_SOURCE_URL:=https://github.com/ccache/ccache/releases/download/v$(PKG_VERSION)
|
2020-12-23 09:16:17 +00:00
|
|
|
PKG_HASH:=5fdc804056632d722a1182e15386696f0ea6c59cb4ab4d65a54f0b269ae86f99
|
|
|
|
|
|
|
|
HOST_BUILD_PARALLEL:=1
|
2006-12-11 16:42:57 +00:00
|
|
|
|
2020-12-19 00:22:29 +00:00
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
2020-12-23 09:16:17 +00:00
|
|
|
include $(INCLUDE_DIR)/cmake.mk
|
2020-12-22 19:38:13 +00:00
|
|
|
|
2020-12-23 09:16:17 +00:00
|
|
|
CMAKE_HOST_OPTIONS += \
|
|
|
|
-DCMAKE_C_COMPILER_LAUNCHER="" \
|
|
|
|
-DCMAKE_CXX_COMPILER_LAUNCHER=""
|
2012-08-10 19:05:22 +00:00
|
|
|
|
2012-06-06 13:27:11 +00:00
|
|
|
define Host/Install/ccache
|
|
|
|
$(INSTALL_DIR) $(STAGING_DIR_HOST)/bin/
|
|
|
|
$(CP) ./files/* $(STAGING_DIR_HOST)/bin/
|
|
|
|
endef
|
|
|
|
|
2015-07-14 10:30:38 +00:00
|
|
|
define Host/Install
|
2012-06-06 13:27:11 +00:00
|
|
|
$(call Host/Install/Default)
|
|
|
|
$(call Host/Install/ccache)
|
2015-07-14 10:30:38 +00:00
|
|
|
endef
|
2007-02-27 23:44:04 +00:00
|
|
|
|
2006-12-11 16:42:57 +00:00
|
|
|
$(eval $(call HostBuild))
|