final step in buildroot facelift
This commit is contained in:
@@ -2,15 +2,9 @@
|
||||
|
||||
comment "Ccache Options"
|
||||
|
||||
config BR2_HOST_CCACHE
|
||||
config BR2_CCACHE
|
||||
bool "Enable ccache support?"
|
||||
default y
|
||||
help
|
||||
Enable ccache support?
|
||||
|
||||
config BR2_PACKAGE_CCACHE
|
||||
bool "Enable ccache support for the Target?"
|
||||
default y
|
||||
help
|
||||
Enable ccache support?
|
||||
|
||||
|
||||
8
toolchain/ccache/Config.in.2
Normal file
8
toolchain/ccache/Config.in.2
Normal file
@@ -0,0 +1,8 @@
|
||||
#
|
||||
|
||||
config BR2_PACKAGE_CCACHE_TARGET
|
||||
bool"ccache support in the target filesystem"
|
||||
default n
|
||||
help
|
||||
Add help text here.
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
ifeq ($(strip $(BR2_HOST_CCACHE)),y)
|
||||
ifeq ($(strip $(BR2_CCACHE)),y)
|
||||
TARGETS+=ccache
|
||||
endif
|
||||
ifeq ($(strip $(BR2_PACKAGE_CCACHE_TARGET)),y)
|
||||
TARGETS+=ccache
|
||||
endif
|
||||
|
||||
8
toolchain/gcc/Config.in.2
Normal file
8
toolchain/gcc/Config.in.2
Normal file
@@ -0,0 +1,8 @@
|
||||
#
|
||||
|
||||
config BR2_PACKAGE_GCC_TARGET
|
||||
bool"gcc toolchain in the target filesystem"
|
||||
default n
|
||||
help
|
||||
Add help text here.
|
||||
|
||||
@@ -25,3 +25,8 @@ ifeq ($(INSTALL_LIBGCJ),true)
|
||||
INSTALL_LIBSTDCPP:=true
|
||||
endif
|
||||
|
||||
|
||||
ifeq ($(strip $(BR2_PACKAGE_GCC_TARGET)),y)
|
||||
TARGETS+=gcc_target
|
||||
endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user