Skip to content
Snippets Groups Projects
Commit 08fb61d3 authored by Florian Fainelli's avatar Florian Fainelli
Browse files

scripts: Probe external toolchains for libgomp


Now that libgomp can be a package, probe external toolchains for that
library.

Signed-off-by: default avatarFlorian Fainelli <f.fainelli@gmail.com>
parent c258bc78
No related branches found
No related tags found
No related merge requests found
...@@ -38,6 +38,7 @@ LIB_SPECS=" ...@@ -38,6 +38,7 @@ LIB_SPECS="
gcc: libgcc_s gcc: libgcc_s
ssp: libssp ssp: libssp
gfortran: libgfortran gfortran: libgfortran
gomp: libgomp
" "
# Binary specs # Binary specs
...@@ -361,7 +362,7 @@ print_config() { ...@@ -361,7 +362,7 @@ print_config() {
fi fi
local lib local lib
for lib in C RT PTHREAD GCC STDCPP SSP GFORTRAN; do for lib in C RT PTHREAD GCC STDCPP SSP GFORTRAN GOMP; 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&#')"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment