diff options
author | Allan McRae <allan@archlinux.org> | 2013-06-26 14:37:53 +1000 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2013-07-22 13:27:47 +1000 |
commit | 28cb22e3c20676c42a08593b5553ee896b53e030 (patch) | |
tree | 5b8234351bb357f90dbb13b865bdaaf92dd9d37c /build-aux/ltmain-asneeded.patch | |
parent | 1438377401431af3872e2a0c323fb804802242ad (diff) | |
download | pacman-28cb22e3c20676c42a08593b5553ee896b53e030.tar.xz |
Patch ltmain on autoreconf
We used to carry a patched version of ltmain in our repos to fix libtools
issues with -Wl,-as-needed. Now that ltmain is "generated" by autoreconf,
we manually patch it afterwards.
Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'build-aux/ltmain-asneeded.patch')
-rw-r--r-- | build-aux/ltmain-asneeded.patch | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/build-aux/ltmain-asneeded.patch b/build-aux/ltmain-asneeded.patch new file mode 100644 index 00000000..af5ae6b2 --- /dev/null +++ b/build-aux/ltmain-asneeded.patch @@ -0,0 +1,33 @@ +--- ltmain.sh.orig 2013-06-26 14:31:53.472627840 +1000 ++++ ltmain.sh 2013-06-26 14:30:56.137038936 +1000 +@@ -5800,6 +5800,14 @@ + arg=$func_stripname_result + ;; + ++ -Wl,*--as-needed*) ++ deplibs="$deplibs $wl--as-needed" ++ ;; ++ ++ -Wl,*--no-as-needed*) ++ deplibs="$deplibs $wl--no-as-needed" ++ ;; ++ + -Wl,*) + func_stripname '-Wl,' '' "$arg" + args=$func_stripname_result +@@ -6160,6 +6168,15 @@ + lib= + found=no + case $deplib in ++ -Wl,--as-needed|-Wl,--no-as-needed) ++ if test "$linkmode,$pass" = "prog,link"; then ++ compile_deplibs="$deplib $compile_deplibs" ++ finalize_deplibs="$deplib $finalize_deplibs" ++ else ++ deplibs="$deplib $deplibs" ++ fi ++ continue ++ ;; + -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ + |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) + if test "$linkmode,$pass" = "prog,link"; then |