This website requires JavaScript.
Explore
Help
Sign In
OrgZephyr
/
zephyr
mirror of
https://github.com/zephyrproject-rtos/zephyr.git
Watch
1
Star
0
Fork
You've already forked zephyr
0
Code
Issues
Releases
Wiki
Activity
9670dc582d
zephyr
/
lib
/
libc
/
Makefile
6 lines
77 B
Makefile
Raw
Normal View
History
Unescape
Escape
libc: rework libc selection and reduce Kconfigs Moved all libc Kconfigs to where the code is and remove the default Kconfig for selecting the minimal libc. Minimal libc is now the default if nothing else is configured in. Removed the options for extended libc, this obviously was restricting features in the minimal libc without a good reason, most of the functions are available directly when using newlib, so there is no reason why we need to restrict those in minimal libc. Jira: ZEP-1440 Change-Id: If0a3adf4314e2ebdf0e139dee3eb4f47ce07aa89 Signed-off-by: Anas Nashif <anas.nashif@intel.com>
2016-12-16 00:16:55 +08:00
i
f
e
q
(
$(
CONFIG_NEWLIB_LIBC
)
,
y
)
obj-y
+=
newlib/
e
l
s
e
obj-y
+=
minimal/
e
n
d
i
f