mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-19 21:58:04 +00:00
scripts/ext-toolchain: add missing libc library specs
Add missing libc library spec that weren't added to the ext-toolchain script when the library were introduced in the packages libs toolchain Makefile. Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
This commit is contained in:
parent
76c863fe60
commit
8cad52a267
@ -41,6 +41,12 @@ LIB_SPECS="
|
|||||||
ssp: libssp
|
ssp: libssp
|
||||||
gfortran: libgfortran
|
gfortran: libgfortran
|
||||||
gomp: libgomp
|
gomp: libgomp
|
||||||
|
atomic: libatomic
|
||||||
|
quadmath: libquadmath
|
||||||
|
asan: libasan
|
||||||
|
tasan: libtsan
|
||||||
|
lasan: liblsan
|
||||||
|
ubasan: libubsan
|
||||||
"
|
"
|
||||||
|
|
||||||
# Binary specs
|
# Binary specs
|
||||||
@ -405,7 +411,7 @@ print_config() {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
local lib
|
local lib
|
||||||
for lib in C RT PTHREAD GCC STDCPP SSP GFORTRAN GOMP; do
|
for lib in C RT PTHREAD GCC STDCPP SSP GFORTRAN GOMP ATOMIC QUADMATH ASAN TSAN LSAN UBSAN; do
|
||||||
local file
|
local file
|
||||||
local spec=""
|
local spec=""
|
||||||
local llib="$(echo "$lib" | sed -e 's#.*#\L&#')"
|
local llib="$(echo "$lib" | sed -e 's#.*#\L&#')"
|
||||||
|
Loading…
Reference in New Issue
Block a user