8b5d644bb3
This includes binutils, gcc, gdb and uClibc-ng. Latest release of ARC gcc (as of today it is "arc-2015.06") is based on upstream gcc 4.8.4. Sources are available on GitHub, see: https://github.com/foss-for-synopsys-dwc-arc-processors/gcc Latest release of ARC binutils (as of today it is "arc-2015.06") is based on upstream binutils 2.23. Sources are available on GitHub, see: https://github.com/foss-for-synopsys-dwc-arc-processors/binutils-gdb/releases/tag/arc-2015.06 Latest release of ARC GDB (as of today this is "arc-2015.06-gdb") is based on upstream gdb 7.9.1. Sources are available on GitHub, see: https://github.com/foss-for-synopsys-dwc-arc-processors/binutils-gdb/releases/tag/arc-2015.06-gdb Note that for binutils and gdb that come from unified git repository (which is the case for upstream binutils/gdb today) we need to disable building of gdb in binutils and binutils in gdb hence in binutils: ------>8------ --disable-sim --disable-gdb ------>8------ and in gdb: ------>8------ --disable-binutils --disable-ld --disable-gas ------>8------ Also in gdb we disable sim because if the following breakage while building with it: ------------>8------------ /usr/bin/env bash ./../common/genmloop.sh -shell /usr/bin/env bash \ -mono -fast -pbb -switch sem5-switch.c \ -cpu a5f -infile ./mloop5.in \ -outfile-suffix 5 unknown option: bash Makefile:699: recipe for target 'stamp-5mloop' failed make[7]: *** [stamp-5mloop] Error 1 ------------>8------------ Cc: Felix Fietkau <nbd@openwrt.org> Cc: John Crispin <blogic@openwrt.org> Cc: Jonas Gorski <jogo@openwrt.org> Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com> SVN-Revision: 47438
208 lines
2.4 KiB
Plaintext
208 lines
2.4 KiB
Plaintext
source "tmp/.config-target.in"
|
|
|
|
# Kernel/Hardware features
|
|
|
|
config HAS_SPE_FPU
|
|
depends on powerpc
|
|
select HAS_FPU
|
|
bool
|
|
|
|
config HAS_FPU
|
|
bool
|
|
|
|
config AUDIO_SUPPORT
|
|
bool
|
|
|
|
config GPIO_SUPPORT
|
|
bool
|
|
|
|
config PCI_SUPPORT
|
|
select AUDIO_SUPPORT
|
|
bool
|
|
|
|
config PCIE_SUPPORT
|
|
bool
|
|
|
|
config PCMCIA_SUPPORT
|
|
bool
|
|
|
|
config USB_SUPPORT
|
|
select AUDIO_SUPPORT
|
|
bool
|
|
|
|
config USB_GADGET_SUPPORT
|
|
bool
|
|
|
|
config RTC_SUPPORT
|
|
bool
|
|
|
|
config BIG_ENDIAN
|
|
bool
|
|
|
|
config USES_DEVICETREE
|
|
bool
|
|
|
|
config USES_INITRAMFS
|
|
bool
|
|
|
|
config USES_SQUASHFS
|
|
bool
|
|
|
|
config USES_JFFS2
|
|
bool
|
|
|
|
config USES_JFFS2_NAND
|
|
bool
|
|
|
|
config USES_EXT4
|
|
bool
|
|
|
|
config USES_TARGZ
|
|
bool
|
|
|
|
config USES_CPIOGZ
|
|
bool
|
|
|
|
config USES_UBIFS
|
|
bool
|
|
select NAND_SUPPORT
|
|
|
|
config PROFILE_KCONFIG
|
|
bool
|
|
|
|
config LOW_MEMORY_FOOTPRINT
|
|
bool
|
|
|
|
config NOMMU
|
|
bool
|
|
|
|
config HAS_MIPS16
|
|
depends on (mips || mipsel || mips64 || mips64el)
|
|
bool
|
|
|
|
config RFKILL_SUPPORT
|
|
bool
|
|
|
|
config NAND_SUPPORT
|
|
bool
|
|
|
|
config ARCH_64BIT
|
|
bool
|
|
|
|
# Architecture selection
|
|
|
|
config aarch64
|
|
select ARCH_64BIT
|
|
bool
|
|
|
|
config aarch64_be
|
|
select ARCH_64BIT
|
|
select BIG_ENDIAN
|
|
bool
|
|
|
|
config arc
|
|
bool
|
|
|
|
config arceb
|
|
select BIG_ENDIAN
|
|
bool
|
|
|
|
config arm
|
|
bool
|
|
|
|
config armeb
|
|
select BIG_ENDIAN
|
|
bool
|
|
|
|
config arm_v4
|
|
bool
|
|
|
|
config arm_v5
|
|
bool
|
|
|
|
config arm_v6
|
|
bool
|
|
|
|
config arm_v7
|
|
bool
|
|
|
|
config i386
|
|
bool
|
|
|
|
config i686
|
|
bool
|
|
|
|
config m68k
|
|
bool
|
|
|
|
config mips
|
|
select BIG_ENDIAN
|
|
bool
|
|
|
|
config mipsel
|
|
bool
|
|
|
|
config mips64
|
|
select BIG_ENDIAN
|
|
select ARCH_64BIT
|
|
bool
|
|
|
|
config mips64el
|
|
select ARCH_64BIT
|
|
bool
|
|
|
|
config powerpc
|
|
select BIG_ENDIAN
|
|
bool
|
|
|
|
config powerpc64
|
|
select BIG_ENDIAN
|
|
select ARCH_64BIT
|
|
bool
|
|
|
|
config sh3
|
|
bool
|
|
|
|
config sh3eb
|
|
select BIG_ENDIAN
|
|
bool
|
|
|
|
config sh4
|
|
bool
|
|
|
|
config sh4eb
|
|
select BIG_ENDIAN
|
|
bool
|
|
|
|
config sparc
|
|
select BIG_ENDIAN
|
|
bool
|
|
|
|
config x86_64
|
|
select ARCH_64BIT
|
|
bool
|
|
|
|
config ARCH
|
|
string
|
|
default "aarch64" if aarch64
|
|
default "aarch64_be" if aarch64_be
|
|
default "arc" if arc
|
|
default "arceb" if arceb
|
|
default "arm" if arm
|
|
default "armeb" if armeb
|
|
default "i386" if i386
|
|
default "i686" if i686
|
|
default "m68k" if m68k
|
|
default "mips" if mips
|
|
default "mipsel" if mipsel
|
|
default "mips64" if mips64
|
|
default "mips64el" if mips64el
|
|
default "powerpc" if powerpc
|
|
default "sh3" if sh3
|
|
default "sh3eb" if sh3eb
|
|
default "sh4" if sh4
|
|
default "sh4eb" if sh4eb
|
|
default "sparc" if sparc
|
|
default "x86_64" if x86_64
|
|
|