diff options
| author | Hauke Mehrtens | 2020-12-22 23:32:41 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2020-12-22 23:45:19 +0000 |
| commit | 920b692667470cf666ebb573f9213eccf3117702 (patch) | |
| tree | 516fa93941bdb2f2454d17141bb6acc1cb02f71a | |
| parent | 7ba2f5c96f2697e828c28bf2daf2e4978e950207 (diff) | |
| download | openwrt-920b692667470cf666ebb573f9213eccf3117702.tar.gz | |
toolchain: Fix glibc selection on ARC targets
Without this change no libc is selected and the build will fail. This
will select glibc for ARC CPUs.
Fixes: 95f1002acab5 ("toolchain: default to glibc for ARC")
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
| -rw-r--r-- | toolchain/Config.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/toolchain/Config.in b/toolchain/Config.in index bb8729d805..6dda9af92d 100644 --- a/toolchain/Config.in +++ b/toolchain/Config.in @@ -260,6 +260,7 @@ config GDB Enable if you want to build the gdb. config USE_GLIBC + default y if !TOOLCHAINOPTS && !EXTERNAL_TOOLCHAIN && !NATIVE_TOOLCHAIN && (arc) bool config USE_MUSL |