final step in buildroot facelift

This commit is contained in:
Eric Andersen
2004-10-09 06:13:40 +00:00
parent ae2792b44c
commit f694016136
172 changed files with 1040 additions and 23 deletions

View File

@@ -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?

View File

@@ -0,0 +1,8 @@
#
config BR2_PACKAGE_CCACHE_TARGET
bool"ccache support in the target filesystem"
default n
help
Add help text here.

View File

@@ -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

View File

@@ -0,0 +1,8 @@
#
config BR2_PACKAGE_GCC_TARGET
bool"gcc toolchain in the target filesystem"
default n
help
Add help text here.

View File

@@ -25,3 +25,8 @@ ifeq ($(INSTALL_LIBGCJ),true)
INSTALL_LIBSTDCPP:=true
endif
ifeq ($(strip $(BR2_PACKAGE_GCC_TARGET)),y)
TARGETS+=gcc_target
endif