blob: bf3f75dd4da219ab1416c191d53cd7542ca14dee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#
if BR2_TOOLCHAIN_EXTERNAL
config BR2_TOOLCHAIN_EXTERNAL_PATH
string "External toolchain path"
default "$(GCCROOT)"
help
Path to where the external toolchain is installed.
Either define GCCROOT in your environment
or an absolute path like:
"/path/to/staging_dir/usr"
config BR2_TOOLCHAIN_EXTERNAL_PREFIX
string "External toolchain prefix"
default "$(ARCH)-linux"
help
This the the external toolchain prefix. For example:
armeb-unknown-linux-gnu, mipsel-unknown-linux-gnu, etc.
endif
|