This is the mail archive of the elfutils-devel@sourceware.org mailing list for the elfutils 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: [patch] Support --enable-static


I don't have any objection to the change, since we already have the option
in the makefiles anyway.  But I still wouldn't use it.  Debugging with the
shared libraries has never been much hassle for me.

What I've been using for years is this testrun.sh script in my elfutils
build directories:

#!/bin/sh
eu_dir=`dirname $0`
LD_LIBRARY_PATH=${eu_dir}/libelf:${eu_dir}/libdw:${eu_dir}/backends\
${LD_LIBRARY_PATH:+$LD_LIBRARY_PATH}
export LD_LIBRARY_PATH
case "$1" in
/*) ;;
src/*|tests/*) f="$1"; shift; set -- "${eu_dir}/$f" ${1+"$@"} ;;
esac
exec "$@"

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