mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-21 14:37:57 +00:00
toolchain/uClibc: add support of uClibc-ng
uClibc-ng is a spin-off of original uClibc, see http://www.uclibc-ng.org/ We try to regularly add changes from uClibc to uClibc-ng. We even sent patches and bug reports to the uClibc mailing list. The config file is compatible between uClibc-ng 1.0 and uClibc git master. This might change in the future. Our main goal is to provide regularly a stable and tested release to make embedded system developers happy. The main advantage of uClibc-ng over olde good uClibc is regular releases so there's no need to keep tons of patches on top of years old 0.9.33.2 Build-tested for [1] ARM: Sunxi generic [2] MIPS: Netgear WNDR3600/3700/3800 Run-tested for [yet out of the tree] Synopsys Designware ARC AXS101. Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com> Cc: Waldemar Brodkorb <wbx@uclibc-ng.org> Cc: Mathieu Olivari <mathieu@codeaurora.org> Cc: Felix Fietkau <nbd@openwrt.org> Cc: John Crispin <blogic@openwrt.org> SVN-Revision: 47077
This commit is contained in:
parent
7ad419a9f1
commit
57a70e8a64
@ -11,6 +11,10 @@ choice
|
|||||||
select UCLIBC_VERSION_0_9_33
|
select UCLIBC_VERSION_0_9_33
|
||||||
bool "uClibc 0.9.33.2"
|
bool "uClibc 0.9.33.2"
|
||||||
|
|
||||||
|
config UCLIBC_USE_VERSION_NG
|
||||||
|
select UCLIBC_VERSION_NG
|
||||||
|
bool "uClibc-ng"
|
||||||
|
|
||||||
endchoice
|
endchoice
|
||||||
|
|
||||||
# Debug version.
|
# Debug version.
|
||||||
|
@ -2,8 +2,12 @@ config UCLIBC_VERSION
|
|||||||
string
|
string
|
||||||
depends on USE_UCLIBC
|
depends on USE_UCLIBC
|
||||||
default "0.9.33.2" if UCLIBC_VERSION_0_9_33
|
default "0.9.33.2" if UCLIBC_VERSION_0_9_33
|
||||||
|
default "1.0.6" if UCLIBC_VERSION_NG
|
||||||
default "0.9.33.2"
|
default "0.9.33.2"
|
||||||
|
|
||||||
config UCLIBC_VERSION_0_9_33
|
config UCLIBC_VERSION_0_9_33
|
||||||
default y if !TOOLCHAINOPTS && USE_UCLIBC
|
default y if !TOOLCHAINOPTS && USE_UCLIBC
|
||||||
bool
|
bool
|
||||||
|
|
||||||
|
config UCLIBC_VERSION_NG
|
||||||
|
bool
|
||||||
|
@ -7,15 +7,24 @@
|
|||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
include $(INCLUDE_DIR)/target.mk
|
include $(INCLUDE_DIR)/target.mk
|
||||||
|
|
||||||
PKG_NAME:=uClibc
|
|
||||||
PKG_VERSION:=$(call qstrip,$(CONFIG_UCLIBC_VERSION))
|
PKG_VERSION:=$(call qstrip,$(CONFIG_UCLIBC_VERSION))
|
||||||
|
|
||||||
|
ifeq ($(CONFIG_UCLIBC_VERSION_NG),y)
|
||||||
|
PKG_NAME:=uClibc-ng
|
||||||
|
PKG_SOURCE_URL = http://downloads.uclibc-ng.org/releases/$(PKG_VERSION)/
|
||||||
|
PATCH_DIR:=$(PATH_PREFIX)/patches-ng-$(PKG_VERSION)
|
||||||
|
CONFIG_DIR:=$(PATH_PREFIX)/config-ng-$(PKG_VERSION)
|
||||||
|
else
|
||||||
|
PKG_NAME:=uClibc
|
||||||
PKG_SOURCE_URL:=http://www.uclibc.org/downloads
|
PKG_SOURCE_URL:=http://www.uclibc.org/downloads
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
||||||
LIBC_SO_VERSION:=$(PKG_VERSION)
|
|
||||||
PATCH_DIR:=$(PATH_PREFIX)/patches-$(PKG_VERSION)
|
PATCH_DIR:=$(PATH_PREFIX)/patches-$(PKG_VERSION)
|
||||||
CONFIG_DIR:=$(PATH_PREFIX)/config-$(PKG_VERSION)
|
CONFIG_DIR:=$(PATH_PREFIX)/config-$(PKG_VERSION)
|
||||||
|
endif
|
||||||
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
||||||
|
LIBC_SO_VERSION:=$(PKG_VERSION)
|
||||||
|
|
||||||
PKG_MD5SUM_0.9.33.2 = a338aaffc56f0f5040e6d9fa8a12eda1
|
PKG_MD5SUM_0.9.33.2 = a338aaffc56f0f5040e6d9fa8a12eda1
|
||||||
|
PKG_MD5SUM_1.0.6 = dfcc780bf2c7e2e42209bbb572e035cf
|
||||||
PKG_MD5SUM=$(PKG_MD5SUM_$(PKG_VERSION))
|
PKG_MD5SUM=$(PKG_MD5SUM_$(PKG_VERSION))
|
||||||
|
|
||||||
HOST_BUILD_DIR:=$(BUILD_DIR_TOOLCHAIN)/$(PKG_NAME)-$(PKG_VERSION)
|
HOST_BUILD_DIR:=$(BUILD_DIR_TOOLCHAIN)/$(PKG_NAME)-$(PKG_VERSION)
|
||||||
|
9
toolchain/uClibc/config-ng-1.0.6/arm
Normal file
9
toolchain/uClibc/config-ng-1.0.6/arm
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
ARCH_ANY_ENDIAN=y
|
||||||
|
ARCH_LITTLE_ENDIAN=y
|
||||||
|
ARCH_WANTS_LITTLE_ENDIAN=y
|
||||||
|
# COMPILE_IN_THUMB_MODE is not set
|
||||||
|
TARGET_ARCH="arm"
|
||||||
|
TARGET_arm=y
|
||||||
|
# USE_BX is not set
|
||||||
|
CONFIG_ARM_EABI=y
|
||||||
|
|
9
toolchain/uClibc/config-ng-1.0.6/armeb
Normal file
9
toolchain/uClibc/config-ng-1.0.6/armeb
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
ARCH_ANY_ENDIAN=y
|
||||||
|
ARCH_BIG_ENDIAN=y
|
||||||
|
ARCH_WANTS_BIG_ENDIAN=y
|
||||||
|
# COMPILE_IN_THUMB_MODE is not set
|
||||||
|
TARGET_ARCH="arm"
|
||||||
|
TARGET_arm=y
|
||||||
|
# USE_BX is not set
|
||||||
|
CONFIG_ARM_EABI=y
|
||||||
|
|
223
toolchain/uClibc/config-ng-1.0.6/common
Normal file
223
toolchain/uClibc/config-ng-1.0.6/common
Normal file
@ -0,0 +1,223 @@
|
|||||||
|
# ARCH_ANY_ENDIAN is not set
|
||||||
|
ARCH_HAS_MMU=y
|
||||||
|
# ARCH_HAS_NO_LDSO is not set
|
||||||
|
# ARCH_HAS_NO_SHARED is not set
|
||||||
|
# ARCH_LITTLE_ENDIAN is not set
|
||||||
|
ARCH_USE_MMU=y
|
||||||
|
# ARCH_WANTS_BIG_ENDIAN is not set
|
||||||
|
# ARCH_WANTS_LITTLE_ENDIAN is not set
|
||||||
|
ASSUME_DEVPTS=y
|
||||||
|
# COMPAT_ATEXIT is not set
|
||||||
|
CROSS_COMPILER_PREFIX=""
|
||||||
|
DEVEL_PREFIX="/usr/"
|
||||||
|
# DOASSERTS is not set
|
||||||
|
# DODEBUG is not set
|
||||||
|
# DODEBUG_PT is not set
|
||||||
|
# DOMULTI is not set
|
||||||
|
DOPIC=y
|
||||||
|
DOSTRIP=y
|
||||||
|
DO_C99_MATH=y
|
||||||
|
# DO_XSI_MATH is not set
|
||||||
|
# EXTRA_WARNINGS is not set
|
||||||
|
FORCE_OPTIONS_FOR_ARCH=y
|
||||||
|
# FORCE_SHAREABLE_TEXT_SEGMENTS is not set
|
||||||
|
# HARDWIRED_ABSPATH is not set
|
||||||
|
# HAS_NO_THREADS is not set
|
||||||
|
HAVE_DOT_CONFIG=y
|
||||||
|
# HAVE_NO_PIC is not set
|
||||||
|
# HAVE_NO_SSP is not set
|
||||||
|
HAVE_SHARED=y
|
||||||
|
KERNEL_HEADERS="."
|
||||||
|
LDSO_BASE_FILENAME="ld.so"
|
||||||
|
LDSO_CACHE_SUPPORT=y
|
||||||
|
# LDSO_GNU_HASH_SUPPORT is not set
|
||||||
|
LDSO_LD_LIBRARY_PATH=y
|
||||||
|
LDSO_LDD_SUPPORT=y
|
||||||
|
# LDSO_NO_CLEANUP is not set
|
||||||
|
# LDSO_PRELINK_SUPPORT is not set
|
||||||
|
# LDSO_PRELOAD_FILE_SUPPORT is not set
|
||||||
|
LDSO_PRELOAD_ENV_SUPPORT=y
|
||||||
|
LDSO_RUNPATH=y
|
||||||
|
LDSO_SAFE_RUNPATH=y
|
||||||
|
# LDSO_RUNPATH_OF_EXECUTABLE is not set
|
||||||
|
# LDSO_SEARCH_INTERP_PATH is not set
|
||||||
|
# LDSO_STANDALONE_SUPPORT is not set
|
||||||
|
# LINUXTHREADS_NEW is not set
|
||||||
|
# LINUXTHREADS_OLD is not set
|
||||||
|
# UCLIBC_HAS_BACKTRACE is not set
|
||||||
|
UCLIBC_HAS_THREADS_NATIVE=y
|
||||||
|
# MALLOC is not set
|
||||||
|
MALLOC_GLIBC_COMPAT=y
|
||||||
|
# MALLOC_SIMPLE is not set
|
||||||
|
MALLOC_STANDARD=y
|
||||||
|
MULTILIB_DIR="lib"
|
||||||
|
PTHREADS_DEBUG_SUPPORT=y
|
||||||
|
RUNTIME_PREFIX="/"
|
||||||
|
# SUPPORT_LD_DEBUG is not set
|
||||||
|
# SUPPORT_LD_DEBUG_EARLY is not set
|
||||||
|
TARGET_SUBARCH=""
|
||||||
|
# TARGET_alpha is not set
|
||||||
|
# TARGET_arc is not set
|
||||||
|
# TARGET_arm is not set
|
||||||
|
# TARGET_avr32 is not set
|
||||||
|
# TARGET_bfin is not set
|
||||||
|
# TARGET_c6x is not set
|
||||||
|
# TARGET_cris is not set
|
||||||
|
# TARGET_e1 is not set
|
||||||
|
# TARGET_frv is not set
|
||||||
|
# TARGET_h8300 is not set
|
||||||
|
# TARGET_hppa is not set
|
||||||
|
# TARGET_i386 is not set
|
||||||
|
# TARGET_i960 is not set
|
||||||
|
# TARGET_ia64 is not set
|
||||||
|
# TARGET_m68k is not set
|
||||||
|
# TARGET_metag is not set
|
||||||
|
# TARGET_microblaze is not set
|
||||||
|
# TARGET_mips is not set
|
||||||
|
# TARGET_nios is not set
|
||||||
|
# TARGET_nios2 is not set
|
||||||
|
# TARGET_powerpc is not set
|
||||||
|
# TARGET_sh is not set
|
||||||
|
# TARGET_sh64 is not set
|
||||||
|
# TARGET_sparc is not set
|
||||||
|
# TARGET_v850 is not set
|
||||||
|
# TARGET_vax is not set
|
||||||
|
# TARGET_x86_64 is not set
|
||||||
|
# TARGET_xtensa is not set
|
||||||
|
UCLIBC_BSD_SPECIFIC=y
|
||||||
|
UCLIBC_BUILD_NOEXECSTACK=y
|
||||||
|
# UCLIBC_BUILD_NOW is not set
|
||||||
|
# UCLIBC_BUILD_PIE is not set
|
||||||
|
UCLIBC_BUILD_RELRO=y
|
||||||
|
UCLIBC_CTOR_DTOR=y
|
||||||
|
UCLIBC_DYNAMIC_ATEXIT=y
|
||||||
|
UCLIBC_EXTRA_CFLAGS=""
|
||||||
|
UCLIBC_GRP_BUFFER_SIZE=256
|
||||||
|
UCLIBC_HAS_ADVANCED_REALTIME=y
|
||||||
|
# UCLIBC_HAS_ARC4RANDOM is not set
|
||||||
|
UCLIBC_HAS_BSD_ERR=y
|
||||||
|
UCLIBC_HAS_BSD_RES_CLOSE=y
|
||||||
|
# UCLIBC_HAS_COMPAT_RES_STATE is not set
|
||||||
|
UCLIBC_HAS_CRYPT=y
|
||||||
|
UCLIBC_HAS_CRYPT_IMPL=y
|
||||||
|
UCLIBC_HAS_CTYPE_CHECKED=y
|
||||||
|
# UCLIBC_HAS_CTYPE_ENFORCED is not set
|
||||||
|
UCLIBC_HAS_CTYPE_SIGNED=y
|
||||||
|
UCLIBC_HAS_CTYPE_TABLES=y
|
||||||
|
# UCLIBC_HAS_CTYPE_UNSAFE is not set
|
||||||
|
UCLIBC_HAS_EPOLL=y
|
||||||
|
UCLIBC_HAS_ERRNO_MESSAGES=y
|
||||||
|
# UCLIBC_HAS_EXTRA_COMPAT_RES_STATE is not set
|
||||||
|
# UCLIBC_HAS_FENV is not set
|
||||||
|
UCLIBC_HAS_FLOATS=y
|
||||||
|
UCLIBC_HAS_FNMATCH=y
|
||||||
|
UCLIBC_HAS_FNMATCH_OLD=y
|
||||||
|
# UCLIBC_HAS_FOPEN_CLOSEEXEC_MODE is not set
|
||||||
|
UCLIBC_HAS_FOPEN_EXCLUSIVE_MODE=y
|
||||||
|
# UCLIBC_HAS_FOPEN_LARGEFILE_MODE is not set
|
||||||
|
# UCLIBC_HAS_FPU is not set
|
||||||
|
UCLIBC_HAS_FTS=y
|
||||||
|
UCLIBC_HAS_FTW=y
|
||||||
|
# UCLIBC_HAS_FULL_RPC is not set
|
||||||
|
UCLIBC_HAS_GETPT=y
|
||||||
|
UCLIBC_HAS_GLIBC_CUSTOM_PRINTF=y
|
||||||
|
UCLIBC_HAS_GLIBC_CUSTOM_STREAMS=y
|
||||||
|
# UCLIBC_HAS_GLIBC_DIGIT_GROUPING is not set
|
||||||
|
UCLIBC_HAS_GLOB=y
|
||||||
|
UCLIBC_HAS_GNU_ERROR=y
|
||||||
|
UCLIBC_HAS_GNU_GETOPT=y
|
||||||
|
UCLIBC_HAS_GNU_GETSUBOPT=y
|
||||||
|
UCLIBC_HAS_GNU_GLOB=y
|
||||||
|
UCLIBC_HAS_HEXADECIMAL_FLOATS=y
|
||||||
|
UCLIBC_HAS_IPV4=y
|
||||||
|
UCLIBC_HAS_IPV6=y
|
||||||
|
UCLIBC_HAS_LFS=y
|
||||||
|
UCLIBC_HAS_LIBNSL_STUB=y
|
||||||
|
UCLIBC_HAS_LIBRESOLV_STUB=y
|
||||||
|
UCLIBC_HAS_LIBUTIL=y
|
||||||
|
# UCLIBC_HAS_LOCALE is not set
|
||||||
|
# UCLIBC_BUILD_ALL_LOCALE is not set
|
||||||
|
# UCLIBC_BUILD_MINIMAL_LOCALE is not set
|
||||||
|
# UCLIBC_PREGENERATED_LOCALE_DATA is not set
|
||||||
|
UCLIBC_HAS_LONG_DOUBLE_MATH=y
|
||||||
|
UCLIBC_HAS_NETWORK_SUPPORT=y
|
||||||
|
UCLIBC_HAS_NFTW=y
|
||||||
|
# UCLIBC_HAS_OBSOLETE_BSD_SIGNAL is not set
|
||||||
|
# UCLIBC_HAS_OBSOLETE_SYSV_SIGNAL is not set
|
||||||
|
UCLIBC_HAS_PRINTF_M_SPEC=y
|
||||||
|
# UCLIBC_HAS_PROFILING is not set
|
||||||
|
UCLIBC_HAS_PROGRAM_INVOCATION_NAME=y
|
||||||
|
UCLIBC_HAS_PTY=y
|
||||||
|
UCLIBC_HAS_REALTIME=y
|
||||||
|
# UCLIBC_HAS_REENTRANT_RPC is not set
|
||||||
|
UCLIBC_HAS_REGEX=y
|
||||||
|
UCLIBC_HAS_REGEX_OLD=y
|
||||||
|
UCLIBC_HAS_RESOLVER_SUPPORT=y
|
||||||
|
# UCLIBC_HAS_RPC is not set
|
||||||
|
UCLIBC_HAS_SCANF_GLIBC_A_FLAG=y
|
||||||
|
# UCLIBC_HAS_SHA256_CRYPT_IMPL is not set
|
||||||
|
# UCLIBC_HAS_SHA512_CRYPT_IMPL is not set
|
||||||
|
UCLIBC_HAS_SHADOW=y
|
||||||
|
UCLIBC_HAS_SIGNUM_MESSAGES=y
|
||||||
|
UCLIBC_HAS_SOCKET=y
|
||||||
|
UCLIBC_HAS_SOFT_FLOAT=y
|
||||||
|
# UCLIBC_HAS_SSP is not set
|
||||||
|
# UCLIBC_HAS_SSP_COMPAT is not set
|
||||||
|
UCLIBC_HAS_STDIO_AUTO_RW_TRANSITION=y
|
||||||
|
# UCLIBC_HAS_STDIO_BUFSIZ_1024 is not set
|
||||||
|
# UCLIBC_HAS_STDIO_BUFSIZ_2048 is not set
|
||||||
|
# UCLIBC_HAS_STDIO_BUFSIZ_256 is not set
|
||||||
|
UCLIBC_HAS_STDIO_BUFSIZ_4096=y
|
||||||
|
# UCLIBC_HAS_STDIO_BUFSIZ_512 is not set
|
||||||
|
# UCLIBC_HAS_STDIO_BUFSIZ_8192 is not set
|
||||||
|
# UCLIBC_HAS_STDIO_BUFSIZ_NONE is not set
|
||||||
|
# UCLIBC_HAS_STDIO_BUILTIN_BUFFER_4 is not set
|
||||||
|
# UCLIBC_HAS_STDIO_BUILTIN_BUFFER_8 is not set
|
||||||
|
UCLIBC_HAS_STDIO_BUILTIN_BUFFER_NONE=y
|
||||||
|
UCLIBC_HAS_STDIO_GETC_MACRO=y
|
||||||
|
UCLIBC_HAS_STDIO_PUTC_MACRO=y
|
||||||
|
# UCLIBC_HAS_STDIO_SHUTDOWN_ON_ABORT is not set
|
||||||
|
UCLIBC_HAS_STRING_ARCH_OPT=y
|
||||||
|
UCLIBC_HAS_STRING_GENERIC_OPT=y
|
||||||
|
# UCLIBC_HAS_STUBS is not set
|
||||||
|
UCLIBC_HAS_SYSLOG=y
|
||||||
|
# UCLIBC_HAS_SYS_ERRLIST is not set
|
||||||
|
# UCLIBC_HAS_SYS_SIGLIST is not set
|
||||||
|
UCLIBC_HAS_THREADS=y
|
||||||
|
UCLIBC_HAS_TM_EXTENSIONS=y
|
||||||
|
UCLIBC_HAS_TZ_CACHING=y
|
||||||
|
UCLIBC_HAS_TZ_FILE=y
|
||||||
|
UCLIBC_HAS_TZ_FILE_READ_MANY=y
|
||||||
|
UCLIBC_HAS_UTMPX=y
|
||||||
|
UCLIBC_HAS_UTMP=y
|
||||||
|
UCLIBC_HAS_WCHAR=y
|
||||||
|
UCLIBC_HAS_WORDEXP=y
|
||||||
|
# UCLIBC_HAS_XATTR is not set
|
||||||
|
# UCLIBC_HAS_XLOCALE is not set
|
||||||
|
UCLIBC_HAS___PROGNAME=y
|
||||||
|
# UCLIBC_LINUX_MODULE_24 is not set
|
||||||
|
UCLIBC_LINUX_MODULE_26=y
|
||||||
|
UCLIBC_LINUX_SPECIFIC=y
|
||||||
|
# UCLIBC_MALLOC_DEBUGGING is not set
|
||||||
|
# UCLIBC_MJN3_ONLY is not set
|
||||||
|
# UCLIBC_NTP_LEGACY is not set
|
||||||
|
# USE_OLD_VFPRINTF is not set
|
||||||
|
UCLIBC_PRINTF_SCANF_POSITIONAL_ARGS=9
|
||||||
|
UCLIBC_PWD_BUFFER_SIZE=256
|
||||||
|
# UCLIBC_STATIC_LDCONFIG is not set
|
||||||
|
# UCLIBC_STRICT_HEADERS is not set
|
||||||
|
UCLIBC_SUPPORT_AI_ADDRCONFIG=y
|
||||||
|
UCLIBC_SUSV3_LEGACY=y
|
||||||
|
UCLIBC_SUSV3_LEGACY_MACROS=y
|
||||||
|
UCLIBC_SUSV4_LEGACY=y
|
||||||
|
# UCLIBC_SV4_DEPRECATED is not set
|
||||||
|
UCLIBC_TZ_FILE_PATH="/etc/TZ"
|
||||||
|
# UCLIBC_FALLBACK_TO_ETC_LOCALTIME is not set
|
||||||
|
UCLIBC_USE_NETLINK=y
|
||||||
|
# UNIX98PTY_ONLY is not set
|
||||||
|
USE_BX=y
|
||||||
|
WARNINGS="-Wall"
|
||||||
|
# UCLIBC_HAS_OBSTACK is not set
|
||||||
|
# UCLIBC_SUSV2_LEGACY is not set
|
||||||
|
# UCLIBC_HAS_CONTEXT_FUNCS is not set
|
||||||
|
UCLIBC_HAS_GETOPT_LONG=y
|
6
toolchain/uClibc/config-ng-1.0.6/debug
Normal file
6
toolchain/uClibc/config-ng-1.0.6/debug
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
DODEBUG=y
|
||||||
|
DODEBUG_PT=y
|
||||||
|
PTHREADS_DEBUG_SUPPORT=y
|
||||||
|
SUPPORT_LD_DEBUG=y
|
||||||
|
SUPPORT_LD_DEBUG_EARLY=y
|
||||||
|
UCLIBC_MALLOC_DEBUGGING=y
|
21
toolchain/uClibc/config-ng-1.0.6/i386
Normal file
21
toolchain/uClibc/config-ng-1.0.6/i386
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
ARCH_LITTLE_ENDIAN=y
|
||||||
|
# CONFIG_386 is not set
|
||||||
|
CONFIG_486=y
|
||||||
|
# CONFIG_586 is not set
|
||||||
|
# CONFIG_586MMX is not set
|
||||||
|
# CONFIG_686 is not set
|
||||||
|
# CONFIG_CRUSOE is not set
|
||||||
|
# CONFIG_CYRIXIII is not set
|
||||||
|
# CONFIG_ELAN is not set
|
||||||
|
# CONFIG_GENERIC_386 is not set
|
||||||
|
# CONFIG_K6 is not set
|
||||||
|
# CONFIG_K7 is not set
|
||||||
|
# CONFIG_NEHEMIAH is not set
|
||||||
|
# CONFIG_PENTIUM4 is not set
|
||||||
|
# CONFIG_PENTIUMII is not set
|
||||||
|
# CONFIG_PENTIUMIII is not set
|
||||||
|
# CONFIG_WINCHIP2 is not set
|
||||||
|
# CONFIG_WINCHIPC6 is not set
|
||||||
|
TARGET_ARCH="i386"
|
||||||
|
TARGET_i386=y
|
||||||
|
UCLIBC_HAS_FPU=y
|
21
toolchain/uClibc/config-ng-1.0.6/i686
Normal file
21
toolchain/uClibc/config-ng-1.0.6/i686
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
ARCH_LITTLE_ENDIAN=y
|
||||||
|
# CONFIG_386 is not set
|
||||||
|
# CONFIG_486 is not set
|
||||||
|
# CONFIG_586 is not set
|
||||||
|
# CONFIG_586MMX is not set
|
||||||
|
CONFIG_686=y
|
||||||
|
# CONFIG_CRUSOE is not set
|
||||||
|
# CONFIG_CYRIXIII is not set
|
||||||
|
# CONFIG_ELAN is not set
|
||||||
|
# CONFIG_GENERIC_386 is not set
|
||||||
|
# CONFIG_K6 is not set
|
||||||
|
# CONFIG_K7 is not set
|
||||||
|
# CONFIG_NEHEMIAH is not set
|
||||||
|
# CONFIG_PENTIUM4 is not set
|
||||||
|
# CONFIG_PENTIUMII is not set
|
||||||
|
# CONFIG_PENTIUMIII is not set
|
||||||
|
# CONFIG_WINCHIP2 is not set
|
||||||
|
# CONFIG_WINCHIPC6 is not set
|
||||||
|
TARGET_ARCH="i386"
|
||||||
|
TARGET_i386=y
|
||||||
|
UCLIBC_HAS_FPU=y
|
6
toolchain/uClibc/config-ng-1.0.6/m68k
Normal file
6
toolchain/uClibc/config-ng-1.0.6/m68k
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
ARCH_BIG_ENDIAN=y
|
||||||
|
LINUXTHREADS_OLD=y
|
||||||
|
TARGET_ARCH="m68k"
|
||||||
|
TARGET_SUBARCH=""
|
||||||
|
TARGET_m68k=y
|
||||||
|
# UCLIBC_HAS_THREADS_NATIVE is not set
|
18
toolchain/uClibc/config-ng-1.0.6/mips
Normal file
18
toolchain/uClibc/config-ng-1.0.6/mips
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
ARCH_ANY_ENDIAN=y
|
||||||
|
ARCH_BIG_ENDIAN=y
|
||||||
|
ARCH_CFLAGS="-mno-split-addresses"
|
||||||
|
ARCH_WANTS_BIG_ENDIAN=y
|
||||||
|
# CONFIG_MIPS_ISA_1 is not set
|
||||||
|
# CONFIG_MIPS_ISA_2 is not set
|
||||||
|
# CONFIG_MIPS_ISA_3 is not set
|
||||||
|
# CONFIG_MIPS_ISA_4 is not set
|
||||||
|
CONFIG_MIPS_ISA_MIPS32=y
|
||||||
|
# CONFIG_MIPS_ISA_MIPS32R2 is not set
|
||||||
|
# CONFIG_MIPS_ISA_MIPS64 is not set
|
||||||
|
# CONFIG_MIPS_ISA_MIPS64R2 is not set
|
||||||
|
# CONFIG_MIPS_N32_ABI is not set
|
||||||
|
# CONFIG_MIPS_N64_ABI is not set
|
||||||
|
CONFIG_MIPS_O32_ABI=y
|
||||||
|
TARGET_ARCH="mips"
|
||||||
|
TARGET_mips=y
|
||||||
|
UCLIBC_HAS_FPU=y
|
18
toolchain/uClibc/config-ng-1.0.6/mips64
Normal file
18
toolchain/uClibc/config-ng-1.0.6/mips64
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
ARCH_ANY_ENDIAN=y
|
||||||
|
ARCH_BIG_ENDIAN=y
|
||||||
|
ARCH_CFLAGS="-mno-split-addresses"
|
||||||
|
ARCH_WANTS_BIG_ENDIAN=y
|
||||||
|
# CONFIG_MIPS_ISA_1 is not set
|
||||||
|
# CONFIG_MIPS_ISA_2 is not set
|
||||||
|
# CONFIG_MIPS_ISA_3 is not set
|
||||||
|
# CONFIG_MIPS_ISA_4 is not set
|
||||||
|
# CONFIG_MIPS_ISA_MIPS32 is not set
|
||||||
|
# CONFIG_MIPS_ISA_MIPS32R2 is not set
|
||||||
|
CONFIG_MIPS_ISA_MIPS64=y
|
||||||
|
# CONFIG_MIPS_ISA_MIPS64R2 is not set
|
||||||
|
# CONFIG_MIPS_N32_ABI is not set
|
||||||
|
CONFIG_MIPS_N64_ABI=y
|
||||||
|
# CONFIG_MIPS_O32_ABI is not set
|
||||||
|
TARGET_ARCH="mips"
|
||||||
|
TARGET_mips=y
|
||||||
|
UCLIBC_HAS_FPU=y
|
19
toolchain/uClibc/config-ng-1.0.6/mips64.32
Normal file
19
toolchain/uClibc/config-ng-1.0.6/mips64.32
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
ARCH_ANY_ENDIAN=y
|
||||||
|
ARCH_BIG_ENDIAN=y
|
||||||
|
ARCH_CFLAGS="-mno-split-addresses"
|
||||||
|
ARCH_WANTS_BIG_ENDIAN=y
|
||||||
|
# CONFIG_MIPS_ISA_1 is not set
|
||||||
|
# CONFIG_MIPS_ISA_2 is not set
|
||||||
|
# CONFIG_MIPS_ISA_3 is not set
|
||||||
|
# CONFIG_MIPS_ISA_4 is not set
|
||||||
|
# CONFIG_MIPS_ISA_MIPS32 is not set
|
||||||
|
# CONFIG_MIPS_ISA_MIPS32R2 is not set
|
||||||
|
CONFIG_MIPS_ISA_MIPS64=y
|
||||||
|
# CONFIG_MIPS_ISA_MIPS64R2 is not set
|
||||||
|
# CONFIG_MIPS_N32_ABI is not set
|
||||||
|
# CONFIG_MIPS_N64_ABI is not set
|
||||||
|
CONFIG_MIPS_O32_ABI=y
|
||||||
|
TARGET_ARCH="mips"
|
||||||
|
TARGET_mips=y
|
||||||
|
TARGET_SUBARCH="mips64"
|
||||||
|
UCLIBC_HAS_FPU=y
|
19
toolchain/uClibc/config-ng-1.0.6/mips64.64
Normal file
19
toolchain/uClibc/config-ng-1.0.6/mips64.64
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
ARCH_ANY_ENDIAN=y
|
||||||
|
ARCH_BIG_ENDIAN=y
|
||||||
|
ARCH_CFLAGS="-mno-split-addresses"
|
||||||
|
ARCH_WANTS_BIG_ENDIAN=y
|
||||||
|
# CONFIG_MIPS_ISA_1 is not set
|
||||||
|
# CONFIG_MIPS_ISA_2 is not set
|
||||||
|
# CONFIG_MIPS_ISA_3 is not set
|
||||||
|
# CONFIG_MIPS_ISA_4 is not set
|
||||||
|
# CONFIG_MIPS_ISA_MIPS32 is not set
|
||||||
|
# CONFIG_MIPS_ISA_MIPS32R2 is not set
|
||||||
|
CONFIG_MIPS_ISA_MIPS64=y
|
||||||
|
# CONFIG_MIPS_ISA_MIPS64R2 is not set
|
||||||
|
# CONFIG_MIPS_N32_ABI is not set
|
||||||
|
CONFIG_MIPS_N64_ABI=y
|
||||||
|
# CONFIG_MIPS_O32_ABI is not set
|
||||||
|
TARGET_ARCH="mips"
|
||||||
|
TARGET_mips=y
|
||||||
|
TARGET_SUBARCH="mips64"
|
||||||
|
UCLIBC_HAS_FPU=y
|
19
toolchain/uClibc/config-ng-1.0.6/mips64.n32
Normal file
19
toolchain/uClibc/config-ng-1.0.6/mips64.n32
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
ARCH_ANY_ENDIAN=y
|
||||||
|
ARCH_BIG_ENDIAN=y
|
||||||
|
ARCH_CFLAGS="-mno-split-addresses"
|
||||||
|
ARCH_WANTS_BIG_ENDIAN=y
|
||||||
|
# CONFIG_MIPS_ISA_1 is not set
|
||||||
|
# CONFIG_MIPS_ISA_2 is not set
|
||||||
|
# CONFIG_MIPS_ISA_3 is not set
|
||||||
|
# CONFIG_MIPS_ISA_4 is not set
|
||||||
|
# CONFIG_MIPS_ISA_MIPS32 is not set
|
||||||
|
# CONFIG_MIPS_ISA_MIPS32R2 is not set
|
||||||
|
CONFIG_MIPS_ISA_MIPS64=y
|
||||||
|
# CONFIG_MIPS_ISA_MIPS64R2 is not set
|
||||||
|
CONFIG_MIPS_N32_ABI=y
|
||||||
|
# CONFIG_MIPS_N64_ABI is not set
|
||||||
|
# CONFIG_MIPS_O32_ABI is not set
|
||||||
|
TARGET_ARCH="mips"
|
||||||
|
TARGET_mips=y
|
||||||
|
TARGET_SUBARCH="mips64"
|
||||||
|
UCLIBC_HAS_FPU=y
|
18
toolchain/uClibc/config-ng-1.0.6/mips64el
Normal file
18
toolchain/uClibc/config-ng-1.0.6/mips64el
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
ARCH_ANY_ENDIAN=y
|
||||||
|
ARCH_CFLAGS="-mno-split-addresses"
|
||||||
|
ARCH_LITTLE_ENDIAN=y
|
||||||
|
ARCH_WANTS_LITTLE_ENDIAN=y
|
||||||
|
# CONFIG_MIPS_ISA_1 is not set
|
||||||
|
# CONFIG_MIPS_ISA_2 is not set
|
||||||
|
# CONFIG_MIPS_ISA_3 is not set
|
||||||
|
# CONFIG_MIPS_ISA_4 is not set
|
||||||
|
# CONFIG_MIPS_ISA_MIPS32 is not set
|
||||||
|
# CONFIG_MIPS_ISA_MIPS32R2 is not set
|
||||||
|
CONFIG_MIPS_ISA_MIPS64=y
|
||||||
|
# CONFIG_MIPS_ISA_MIPS64R2 is not set
|
||||||
|
# CONFIG_MIPS_N32_ABI is not set
|
||||||
|
CONFIG_MIPS_N64_ABI=y
|
||||||
|
# CONFIG_MIPS_O32_ABI is not set
|
||||||
|
TARGET_ARCH="mips"
|
||||||
|
TARGET_mips=y
|
||||||
|
UCLIBC_HAS_FPU=y
|
19
toolchain/uClibc/config-ng-1.0.6/mips64el.32
Normal file
19
toolchain/uClibc/config-ng-1.0.6/mips64el.32
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
ARCH_ANY_ENDIAN=y
|
||||||
|
ARCH_CFLAGS="-mno-split-addresses"
|
||||||
|
ARCH_LITTLE_ENDIAN=y
|
||||||
|
ARCH_WANTS_LITTLE_ENDIAN=y
|
||||||
|
# CONFIG_MIPS_ISA_1 is not set
|
||||||
|
# CONFIG_MIPS_ISA_2 is not set
|
||||||
|
# CONFIG_MIPS_ISA_3 is not set
|
||||||
|
# CONFIG_MIPS_ISA_4 is not set
|
||||||
|
# CONFIG_MIPS_ISA_MIPS32 is not set
|
||||||
|
# CONFIG_MIPS_ISA_MIPS32R2 is not set
|
||||||
|
CONFIG_MIPS_ISA_MIPS64=y
|
||||||
|
# CONFIG_MIPS_ISA_MIPS64R2 is not set
|
||||||
|
# CONFIG_MIPS_N32_ABI is not set
|
||||||
|
# CONFIG_MIPS_N64_ABI is not set
|
||||||
|
CONFIG_MIPS_O32_ABI=y
|
||||||
|
TARGET_ARCH="mips"
|
||||||
|
TARGET_mips=y
|
||||||
|
TARGET_SUBARCH="mips64"
|
||||||
|
UCLIBC_HAS_FPU=y
|
19
toolchain/uClibc/config-ng-1.0.6/mips64el.64
Normal file
19
toolchain/uClibc/config-ng-1.0.6/mips64el.64
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
ARCH_ANY_ENDIAN=y
|
||||||
|
ARCH_CFLAGS="-mno-split-addresses"
|
||||||
|
ARCH_LITTLE_ENDIAN=y
|
||||||
|
ARCH_WANTS_LITTLE_ENDIAN=y
|
||||||
|
# CONFIG_MIPS_ISA_1 is not set
|
||||||
|
# CONFIG_MIPS_ISA_2 is not set
|
||||||
|
# CONFIG_MIPS_ISA_3 is not set
|
||||||
|
# CONFIG_MIPS_ISA_4 is not set
|
||||||
|
# CONFIG_MIPS_ISA_MIPS32 is not set
|
||||||
|
# CONFIG_MIPS_ISA_MIPS32R2 is not set
|
||||||
|
CONFIG_MIPS_ISA_MIPS64=y
|
||||||
|
# CONFIG_MIPS_ISA_MIPS64R2 is not set
|
||||||
|
# CONFIG_MIPS_N32_ABI is not set
|
||||||
|
CONFIG_MIPS_N64_ABI=y
|
||||||
|
# CONFIG_MIPS_O32_ABI is not set
|
||||||
|
TARGET_ARCH="mips"
|
||||||
|
TARGET_mips=y
|
||||||
|
TARGET_SUBARCH="mips64"
|
||||||
|
UCLIBC_HAS_FPU=y
|
19
toolchain/uClibc/config-ng-1.0.6/mips64el.n32
Normal file
19
toolchain/uClibc/config-ng-1.0.6/mips64el.n32
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
ARCH_ANY_ENDIAN=y
|
||||||
|
ARCH_CFLAGS="-mno-split-addresses"
|
||||||
|
ARCH_LITTLE_ENDIAN=y
|
||||||
|
ARCH_WANTS_LITTLE_ENDIAN=y
|
||||||
|
# CONFIG_MIPS_ISA_1 is not set
|
||||||
|
# CONFIG_MIPS_ISA_2 is not set
|
||||||
|
# CONFIG_MIPS_ISA_3 is not set
|
||||||
|
# CONFIG_MIPS_ISA_4 is not set
|
||||||
|
# CONFIG_MIPS_ISA_MIPS32 is not set
|
||||||
|
# CONFIG_MIPS_ISA_MIPS32R2 is not set
|
||||||
|
CONFIG_MIPS_ISA_MIPS64=y
|
||||||
|
# CONFIG_MIPS_ISA_MIPS64R2 is not set
|
||||||
|
CONFIG_MIPS_N32_ABI=y
|
||||||
|
# CONFIG_MIPS_N64_ABI is not set
|
||||||
|
# CONFIG_MIPS_O32_ABI is not set
|
||||||
|
TARGET_ARCH="mips"
|
||||||
|
TARGET_mips=y
|
||||||
|
TARGET_SUBARCH="mips64"
|
||||||
|
UCLIBC_HAS_FPU=y
|
18
toolchain/uClibc/config-ng-1.0.6/mipsel
Normal file
18
toolchain/uClibc/config-ng-1.0.6/mipsel
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
ARCH_ANY_ENDIAN=y
|
||||||
|
ARCH_CFLAGS="-mno-split-addresses"
|
||||||
|
ARCH_LITTLE_ENDIAN=y
|
||||||
|
ARCH_WANTS_LITTLE_ENDIAN=y
|
||||||
|
# CONFIG_MIPS_ISA_1 is not set
|
||||||
|
# CONFIG_MIPS_ISA_2 is not set
|
||||||
|
# CONFIG_MIPS_ISA_3 is not set
|
||||||
|
# CONFIG_MIPS_ISA_4 is not set
|
||||||
|
CONFIG_MIPS_ISA_MIPS32=y
|
||||||
|
# CONFIG_MIPS_ISA_MIPS32R2 is not set
|
||||||
|
# CONFIG_MIPS_ISA_MIPS64 is not set
|
||||||
|
# CONFIG_MIPS_ISA_MIPS64R2 is not set
|
||||||
|
# CONFIG_MIPS_N32_ABI is not set
|
||||||
|
# CONFIG_MIPS_N64_ABI is not set
|
||||||
|
CONFIG_MIPS_O32_ABI=y
|
||||||
|
TARGET_ARCH="mips"
|
||||||
|
TARGET_mips=y
|
||||||
|
UCLIBC_HAS_FPU=y
|
18
toolchain/uClibc/config-ng-1.0.6/mipsel.cobalt
Normal file
18
toolchain/uClibc/config-ng-1.0.6/mipsel.cobalt
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
ARCH_ANY_ENDIAN=y
|
||||||
|
ARCH_CFLAGS="-mno-split-addresses"
|
||||||
|
ARCH_LITTLE_ENDIAN=y
|
||||||
|
ARCH_WANTS_LITTLE_ENDIAN=y
|
||||||
|
# CONFIG_MIPS_ISA_1 is not set
|
||||||
|
# CONFIG_MIPS_ISA_2 is not set
|
||||||
|
CONFIG_MIPS_ISA_3=y
|
||||||
|
# CONFIG_MIPS_ISA_4 is not set
|
||||||
|
# CONFIG_MIPS_ISA_MIPS32 is not set
|
||||||
|
# CONFIG_MIPS_ISA_MIPS32R2 is not set
|
||||||
|
# CONFIG_MIPS_ISA_MIPS64 is not set
|
||||||
|
# CONFIG_MIPS_ISA_MIPS64R2 is not set
|
||||||
|
# CONFIG_MIPS_N32_ABI is not set
|
||||||
|
# CONFIG_MIPS_N64_ABI is not set
|
||||||
|
CONFIG_MIPS_O32_ABI=y
|
||||||
|
TARGET_ARCH="mips"
|
||||||
|
TARGET_mips=y
|
||||||
|
UCLIBC_HAS_FPU=y
|
6
toolchain/uClibc/config-ng-1.0.6/powerpc
Normal file
6
toolchain/uClibc/config-ng-1.0.6/powerpc
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
ARCH_BIG_ENDIAN=y
|
||||||
|
CONFIG_CLASSIC=y
|
||||||
|
# CONFIG_E500 is not set
|
||||||
|
TARGET_ARCH="powerpc"
|
||||||
|
TARGET_SUBARCH="classic"
|
||||||
|
TARGET_powerpc=y
|
6
toolchain/uClibc/config-ng-1.0.6/powerpc.e500
Normal file
6
toolchain/uClibc/config-ng-1.0.6/powerpc.e500
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
ARCH_BIG_ENDIAN=y
|
||||||
|
# CONFIG_CLASSIC is not set
|
||||||
|
CONFIG_E500=y
|
||||||
|
TARGET_ARCH="powerpc"
|
||||||
|
TARGET_SUBARCH="classic"
|
||||||
|
TARGET_powerpc=y
|
8
toolchain/uClibc/config-ng-1.0.6/sparc
Normal file
8
toolchain/uClibc/config-ng-1.0.6/sparc
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
ARCH_BIG_ENDIAN=y
|
||||||
|
# CONFIG_SPARC_V7 is not set
|
||||||
|
# CONFIG_SPARC_V8 is not set
|
||||||
|
CONFIG_SPARC_V9=y
|
||||||
|
# CONFIG_SPARC_V9B is not set
|
||||||
|
TARGET_ARCH="sparc"
|
||||||
|
TARGET_sparc=y
|
||||||
|
UCLIBC_HAS_LONG_DOUBLE_MATH=y
|
8
toolchain/uClibc/config-ng-1.0.6/sparc.leon
Normal file
8
toolchain/uClibc/config-ng-1.0.6/sparc.leon
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
ARCH_BIG_ENDIAN=y
|
||||||
|
# CONFIG_SPARC_V7 is not set
|
||||||
|
CONFIG_SPARC_V8=y
|
||||||
|
# CONFIG_SPARC_V9 is not set
|
||||||
|
# CONFIG_SPARC_V9B is not set
|
||||||
|
TARGET_ARCH="sparc"
|
||||||
|
TARGET_sparc=y
|
||||||
|
UCLIBC_HAS_LONG_DOUBLE_MATH=y
|
6
toolchain/uClibc/config-ng-1.0.6/x86_64
Normal file
6
toolchain/uClibc/config-ng-1.0.6/x86_64
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
ARCH_LITTLE_ENDIAN=y
|
||||||
|
# LINUXTHREADS_NEW is not set
|
||||||
|
TARGET_ARCH="x86_64"
|
||||||
|
TARGET_x86_64=y
|
||||||
|
UCLIBC_BSD_SPECIFIC=y
|
||||||
|
UCLIBC_HAS_FPU=y
|
Loading…
Reference in New Issue
Block a user