This is the mail archive of the systemtap@sourceware.org mailing list for the systemtap project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Changes in elfutils in Debian


stap does not use libebl itself (any more).  
So it only needs "libdw that works".

The patch below removes the unnecessary -lebl from the "building elfutils
ourselves" case.  Can you offer a patch to the "if test $build_elfutils = no"
code that succeeds on both old and new Debian installations?

Thanks,
Roland


--- a/configure.ac
+++ b/configure.ac
@@ -291,7 +291,7 @@ if test $build_elfutils = no; then
   LIBS="$save_LIBS"
 else
   # We built our own and stap_LDFLAGS points at the install.
-  stap_LIBS="-Wl,--start-group -ldw -lebl -Wl,--end-group -lelf"
+  stap_LIBS="-ldw -lelf"
 fi
 
 AC_SUBST(stap_LIBS)


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]