summaryrefslogtreecommitdiffstats
path: root/rules/newlib.in
blob: bff5384808c86b3a6e75a4e4f24f7c1bcc9675ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
menuconfig NEWLIB
	bool

	select TOOLCHAIN_DISABLE_SYSROOT
	select TOOLCHAIN_ENABLE_MULTILIB

	select CROSS_GCC_FIRST
	select CROSS_GCC_DISABLE_CXA_ATEXIT
	select CROSS_GCC_ENABLE_SJLJ_EXCEPTIONS
	select CROSS_GCC_DISABLE_LIBSSP
	select CROSS_GCC_DISABLE_SHARED
	select CROSS_GCC_THREADS_SINGLE

	prompt "newlib                      "
	help
	  Newlib is a C library intended for use on embedded
	  systems. It is a conglomeration of several library parts,
	  all under free software licenses that make them easily
	  usable on embedded products.

if NEWLIB

config NEWLIB_VERSION
	string
	prompt "newlib version"
	default "1.16.0"
	help
	  Specify the newlib version here.

config NEWLIB_DL_VERSION
	string
	prompt "newlib download version"
	default "${PTXCONF_NEWLIB_VERSION}"
	help
	  The version of the downloaded archive.

config NEWLIB_MD5
	string
	prompt "newlib source md5sum"

endif