mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-05-05 01:46:11 +02:00
Release Notes: - https://ccache.dev/releasenotes.html#_ccache_4_12_2 - https://ccache.dev/releasenotes.html#_ccache_4_13_3 - https://ccache.dev/releasenotes.html#_ccache_4_13 - https://ccache.dev/releasenotes.html#_ccache_4_13_1 - https://ccache.dev/releasenotes.html#_ccache_4_13_2 - https://ccache.dev/releasenotes.html#_ccache_4_13_3 Link: https://github.com/openwrt/openwrt/pull/23005 Signed-off-by: Nick Hainke <vincent@systemli.org>
30 lines
805 B
Makefile
30 lines
805 B
Makefile
#
|
|
# Copyright (C) 2006-2015 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=ccache
|
|
PKG_VERSION:=4.13.3
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=https://github.com/ccache/ccache/releases/download/v$(PKG_VERSION)
|
|
PKG_HASH:=c149d71f47f6fe08e4f2e43db4b0b091c61e8ea3daa23aa998b094bd84ecdfe8
|
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
CMAKE_HOST_OPTIONS += \
|
|
-DCCACHE_DEV_MODE=OFF \
|
|
-DCMAKE_C_COMPILER_LAUNCHER="" \
|
|
-DCMAKE_CXX_COMPILER_LAUNCHER="" \
|
|
-DCMAKE_SKIP_RPATH=FALSE \
|
|
-DCMAKE_INSTALL_RPATH="${STAGING_DIR_HOST}/lib" \
|
|
-DENABLE_DOCUMENTATION=OFF \
|
|
-DREDIS_STORAGE_BACKEND=OFF \
|
|
-DENABLE_TESTING=OFF
|
|
|
|
$(eval $(call HostBuild))
|