aboutsummaryrefslogtreecommitdiff
path: root/ld/pe-dll.h
AgeCommit message (Expand)AuthorFilesLines
2005-05-12Update FSF addressesNick Clifton1-2/+2
2005-03-03update copyright datesAlan Modra1-1/+1
2003-06-28Convert to C90Alan Modra1-14/+13
2002-11-30s/boolean/bfd_boolean/ s/true/TRUE/ s/false/FALSE/. SimplifyAlan Modra1-16/+25
2002-11-14Add --enable-auto-import extension.Nick Clifton1-1/+1
2002-06-08 * ldexp.c: Replace CONST with const.Alan Modra1-2/+2
2002-05-25 * ldemul.c: Fix formatting.Kazu Hirata1-2/+2
2002-05-22* pe-dll.c (autofilter_liblist): Add more system libs excluded by default.Christopher Faylor1-1/+1
2001-09-122001-09-12 Paul Sokolovsky <Paul.Sokolovsky@technologist.com>Charles Wilson1-1/+1
2001-08-022001-08-02 Charles Wilson <cwilson@ece.gatech.edu>Charles Wilson1-0/+6
2001-03-13Fixtypos in ChangeLogs, fix copyright dates in filesNick Clifton1-1/+1
2000-01-04Applied Mumit Kha's patch to tweak dll production code.Nick Clifton1-1/+3
1999-09-12 * pe-dll.h: New file.Ian Lance Taylor1-0/+46
in the current directory # before using the output of "which". if test -f "$binary_basename" ; then # We have a local gcore script in ".". This covers the case of # doing "./gcore" or "sh gcore". binary_path="." else # The gcore script was not found in ".", which means the script # was called from somewhere else in $PATH by "sh gcore". # Extract the correct path now. binary_path_from_env=`which "$0"` binary_path=`dirname "$binary_path_from_env"` fi fi # Check if the GDB binary is in the expected path. If not, just # quit with a message. if [ ! -f "$binary_path"/@GDB_TRANSFORM_NAME@ ]; then echo "gcore: GDB binary (${binary_path}/@GDB_TRANSFORM_NAME@) not found" exit 1 fi # Initialise return code. rc=0 # Loop through pids for pid in $* do # `</dev/null' to avoid touching interactive terminal if it is # available but not accessible as GDB would get stopped on SIGTTIN. $binary_path/@GDB_TRANSFORM_NAME@ </dev/null --nx --batch \ -ex "set pagination off" -ex "set height 0" -ex "set width 0" \ -ex "attach $pid" -ex "gcore $name.$pid" -ex detach -ex quit if [ -r $name.$pid ] ; then rc=0 else echo "@GCORE_TRANSFORM_NAME@: failed to create $name.$pid" rc=1 break fi done exit $rc