[PATCH v2 07/12] libtool: Check for static libs for internal compiler libraries
Sam James <[email protected]> Sat, 16 Apr 2022 18:58:20 +0100
| Newsgroups | gmane.comp.gnu.libtool.patches |
|---|---|
| Message-ID | <[email protected]> |
From: Khem Raj <[email protected]> Libtool checks only for libraries linked as -l* when trying to find internal compiler libraries. Clang, however uses the absolute path to link its internal libraries e.g. compiler_rt. This patch handles clang's statically linked libraries when finding internal compiler libraries. Signed-off-by: Khem Raj <[email protected]> Signed-off-by: Richard Purdie <[email protected]> --- m4/libtool.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/m4/libtool.m4 b/m4/libtool.m4 index d89a892f..5eac9228 100644 --- a/m4/libtool.m4 +++ b/m4/libtool.m4 @@ -7553,7 +7553,7 @@ if AC_TRY_EVAL(ac_compile); then for p in `eval "$output_verbose_link_cmd"`; do case $prev$p in - -L* | -R* | -l*) + -L* | -R* | -l* | */libclang_rt.*.a) # Some compilers place space between "-{L,R}" and the path. # Remove the space. if test x-L = "$p" || -- 2.35.1