mirror of https://github.com/hak5/openwrt-owl.git
Kconfig: Aesthetic/formatting fixes to toolchain/Config.in.
Non-functional edits to toolchain/Config.in: * fix spelling mistake ("us" -> "is") * Overly long help lines shortened to avoid line wrap * Standardize help info to use tab(s), then two spaces Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> SVN-Revision: 42518owl
parent
275ba42c52
commit
40dde1ca67
|
@ -43,7 +43,8 @@ menuconfig EXTERNAL_TOOLCHAIN
|
||||||
bool
|
bool
|
||||||
prompt "Use external toolchain" if DEVEL
|
prompt "Use external toolchain" if DEVEL
|
||||||
help
|
help
|
||||||
If enabled, OpenWrt will compile using an existing toolchain instead of compiling one
|
If enabled, OpenWrt will compile using an existing toolchain instead of
|
||||||
|
compiling one.
|
||||||
|
|
||||||
config NATIVE_TOOLCHAIN
|
config NATIVE_TOOLCHAIN
|
||||||
bool
|
bool
|
||||||
|
@ -51,7 +52,8 @@ menuconfig EXTERNAL_TOOLCHAIN
|
||||||
depends on EXTERNAL_TOOLCHAIN
|
depends on EXTERNAL_TOOLCHAIN
|
||||||
select NO_STRIP
|
select NO_STRIP
|
||||||
help
|
help
|
||||||
If enabled, OpenWrt will compile using the native toolchain for your host instead of compiling one
|
If enabled, OpenWrt will compile using the native toolchain for your
|
||||||
|
host instead of compiling one.
|
||||||
|
|
||||||
config TARGET_NAME
|
config TARGET_NAME
|
||||||
string
|
string
|
||||||
|
@ -95,10 +97,10 @@ menuconfig EXTERNAL_TOOLCHAIN
|
||||||
depends on EXTERNAL_TOOLCHAIN && !NATIVE_TOOLCHAIN
|
depends on EXTERNAL_TOOLCHAIN && !NATIVE_TOOLCHAIN
|
||||||
default "uclibc"
|
default "uclibc"
|
||||||
help
|
help
|
||||||
Specify the libc type used by the external toolchain. The given value us passed as -m
|
Specify the libc type used by the external toolchain. The given value
|
||||||
flag to all gcc and g++ invocations. This is mainly intended for multilib toolchains
|
is passed as -m flag to all gcc and g++ invocations. This is mainly
|
||||||
which support glibc and uclibc at the same time. If no value is specified, no -m flag
|
intended for multilib toolchains which support glibc and uclibc at
|
||||||
is passed.
|
the same time. If no value is specified, no -m flag is passed.
|
||||||
|
|
||||||
config TOOLCHAIN_BIN_PATH
|
config TOOLCHAIN_BIN_PATH
|
||||||
string
|
string
|
||||||
|
@ -106,8 +108,8 @@ menuconfig EXTERNAL_TOOLCHAIN
|
||||||
depends on EXTERNAL_TOOLCHAIN && !NATIVE_TOOLCHAIN
|
depends on EXTERNAL_TOOLCHAIN && !NATIVE_TOOLCHAIN
|
||||||
default "./usr/bin ./bin"
|
default "./usr/bin ./bin"
|
||||||
help
|
help
|
||||||
Specify additional directories searched for toolchain binaries (override PATH)
|
Specify additional directories searched for toolchain binaries
|
||||||
Use ./DIR for directories relative to the root above
|
(override PATH). Use ./DIR for directories relative to the root above.
|
||||||
|
|
||||||
config TOOLCHAIN_INC_PATH
|
config TOOLCHAIN_INC_PATH
|
||||||
string
|
string
|
||||||
|
@ -115,8 +117,8 @@ menuconfig EXTERNAL_TOOLCHAIN
|
||||||
depends on EXTERNAL_TOOLCHAIN && !NATIVE_TOOLCHAIN
|
depends on EXTERNAL_TOOLCHAIN && !NATIVE_TOOLCHAIN
|
||||||
default "./usr/include ./include"
|
default "./usr/include ./include"
|
||||||
help
|
help
|
||||||
Specify additional directories searched for header files (override CPPFLAGS)
|
Specify additional directories searched for header files (override
|
||||||
Use ./DIR for directories relative to the root above
|
CPPFLAGS). Use ./DIR for directories relative to the root above.
|
||||||
|
|
||||||
config TOOLCHAIN_LIB_PATH
|
config TOOLCHAIN_LIB_PATH
|
||||||
string
|
string
|
||||||
|
@ -124,8 +126,8 @@ menuconfig EXTERNAL_TOOLCHAIN
|
||||||
depends on EXTERNAL_TOOLCHAIN && !NATIVE_TOOLCHAIN
|
depends on EXTERNAL_TOOLCHAIN && !NATIVE_TOOLCHAIN
|
||||||
default "./usr/lib ./lib"
|
default "./usr/lib ./lib"
|
||||||
help
|
help
|
||||||
Specify additional directories searched for libraries (override LDFLAGS)
|
Specify additional directories searched for libraries (override LDFLAGS).
|
||||||
Use ./DIR for directories relative to the root above
|
Use ./DIR for directories relative to the root above.
|
||||||
|
|
||||||
config NEED_TOOLCHAIN
|
config NEED_TOOLCHAIN
|
||||||
bool
|
bool
|
||||||
|
@ -237,7 +239,7 @@ config GDB
|
||||||
prompt "Build gdb" if TOOLCHAINOPTS
|
prompt "Build gdb" if TOOLCHAINOPTS
|
||||||
default y if !EXTERNAL_TOOLCHAIN
|
default y if !EXTERNAL_TOOLCHAIN
|
||||||
help
|
help
|
||||||
Enable if you want to build the gdb
|
Enable if you want to build the gdb.
|
||||||
|
|
||||||
config INSIGHT
|
config INSIGHT
|
||||||
bool
|
bool
|
||||||
|
@ -245,7 +247,7 @@ config INSIGHT
|
||||||
select GDB
|
select GDB
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Enable if you want to build insight-gdb
|
Enable if you want to build insight-gdb.
|
||||||
|
|
||||||
config USE_EGLIBC
|
config USE_EGLIBC
|
||||||
bool
|
bool
|
||||||
|
|
Loading…
Reference in New Issue