Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
lede-mikrotik
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Johannes Rudolph
lede-mikrotik
Commits
97e7fdf6
Commit
97e7fdf6
authored
11 years ago
by
Felix Fietkau
Browse files
Options
Downloads
Patches
Plain Diff
toolchain: get rid of libc implementation symbol overloading
SVN-Revision: 36360
parent
eac34742
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
toolchain/Config.in
+14
-5
14 additions, 5 deletions
toolchain/Config.in
with
14 additions
and
5 deletions
toolchain/Config.in
+
14
−
5
View file @
97e7fdf6
...
...
@@ -164,19 +164,22 @@ comment "C Library"
choice
prompt "C Library implementation" if TOOLCHAINOPTS
default USE_UCLIBC
default
LIBC_
USE_UCLIBC
help
Select the C library implementation.
config USE_EGLIBC
config
LIBC_
USE_EGLIBC
bool "Use eglibc"
select USE_EGLIBC
depends on !avr32
config USE_UCLIBC
config LIBC_USE_UCLIBC
select USE_UCLIBC
bool "Use uClibc"
config USE_MUSL
config
LIBC_
USE_MUSL
bool "Use musl"
select USE_MUSL
depends on !(mips64 || mips64el)
endchoice
...
...
@@ -204,10 +207,16 @@ config INSIGHT
help
Enable if you want to build insight-gdb
config USE_EGLIBC
bool
config USE_UCLIBC
bool
default y if !TOOLCHAINOPTS && !EXTERNAL_TOOLCHAIN && !NATIVE_TOOLCHAIN
config USE_MUSL
bool
config USE_EXTERNAL_LIBC
bool
default y if EXTERNAL_TOOLCHAIN || NATIVE_TOOLCHAIN
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment