mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-09 07:51:59 -09:00
As ARC support is not yet in all upstream packages, a different location is required to download the packages from. This adds an option to specify a site for ARC-specific versions of packages such as binutils, gcc. When ARC support has been upstreamed for all packages, this option can be removed again. Signed-off-by: Mischa Jonker <mjonker@synopsys.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
19 lines
341 B
Plaintext
19 lines
341 B
Plaintext
config BR2_ARCH
|
|
default "arc" if BR2_arcle
|
|
default "arceb" if BR2_arceb
|
|
|
|
config BR2_arc
|
|
bool
|
|
default y if BR2_arcle || BR2_arceb
|
|
|
|
config BR2_ENDIAN
|
|
default "LITTLE" if BR2_arcle
|
|
default "BIG" if BR2_arceb
|
|
|
|
config BR2_GCC_TARGET_CPU
|
|
default "arc700"
|
|
|
|
config BR2_ARC_SITE
|
|
string
|
|
default "http://www.synopsys.com/apps/arc-developer/"
|