Commit 726abd4e authored by Bernhard Reutner-Fischer's avatar Bernhard Reutner-Fischer
Browse files

- provide means to "install uClibc headers in the target filesystem" without a native compiler

parent 50399135
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -21,6 +21,7 @@ if !BR2_PACKAGE_BUSYBOX_HIDE_OTHERS
source "package/gawk/Config.in"
endif
source "toolchain/gcc/Config.in.2"
source "toolchain/uClibc/Config.in.2"
source "toolchain/ccache/Config.in.2"
if !BR2_PACKAGE_BUSYBOX_HIDE_OTHERS
source "package/grep/Config.in"
@@ -185,6 +186,7 @@ source "package/hostap/Config.in"
source "package/iproute2/Config.in"
source "package/ipsec-tools/Config.in"
source "package/iptables/Config.in"
#source "package/l2tp/Config.in"
source "package/libcgi/Config.in"
source "package/libcgicc/Config.in"
source "package/libpcap/Config.in"
@@ -237,6 +239,7 @@ menuconfig BR2_X_WINDOW_SYSTEM
	  Support for X and related packages

if BR2_X_WINDOW_SYSTEM
#source "package/microwin/Config.in"
comment "X server"
source "package/xorg/Config.in"
source "package/tinyx/Config.in"
@@ -250,7 +253,6 @@ source "package/libgtk2/Config.in"
source "package/fontconfig/Config.in"
source "package/freetype/Config.in"
comment "Window managers"
source "package/microwin/Config.in"
source "package/metacity/Config.in"
comment "X applications"
source "package/dillo/Config.in"
+2 −0
Original line number Diff line number Diff line
@@ -16,3 +16,5 @@ OPTIMIZE_FOR_CPU=$(ARCH)

# gcc has a bunch of needed stuff....
include toolchain/gcc/Makefile.in

include toolchain/uClibc/Makefile.in
+1 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_GCC_TARGET
	bool "native toolchain in the target filesystem"
	default n
	select BR2_PACKAGE_UCLIBC_TARGET_HEADERS
	help
	  If you want the target system to be able to run 
	  binutils/gcc and compile native code, say Y here.
+6 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_UCLIBC_TARGET_HEADERS
	bool "install uClibc headers in the target filesystem"
	default n
	help
	  Install the uClibc headers and kernel-headers in the
	  target filesystem.
+4 −0
Original line number Diff line number Diff line

ifeq ($(strip $(BR2_PACKAGE_UCLIBC_TARGET_HEADERS)),y)
TARGETS+=uclibc_target_headers
endif
Loading