contrib: gcrypt: Disable asm for NACL
[vlc.git] / extras / tools / libtool-2.4.6-clang-libs.patch
blob93ec23bd1b86ee7c8097412d035312b1808a9002
1 Libtool checks only for libraries linked as -l* when trying to
2 find internal compiler libraries. Clang, however uses the absolute
3 path to link its internal libraries e.g. compiler_rt. This patch
4 handles clang's statically linked libraries when finding internal
5 compiler libraries.
6 https://crbug.com/749263
7 https://debbugs.gnu.org/cgi/bugreport.cgi?bug=27866
9 --- a/libltdl/m4/libtool.m4
10 +++ b/libltdl/m4/libtool.m4
11 @@ -7531,7 +7544,7 @@
12 for p in `eval "$output_verbose_link_cmd"`; do
13 case $prev$p in
15 - -L* | -R* | -l*)
16 + -L* | -R* | -l* | */libclang_rt.*.a)
17 # Some compilers place space between "-{L,R}" and the path.
18 # Remove the space.
19 if test x-L = "$p" ||