diff options
author | Jeffrey A Law <law@cygnus.com> | 2001-04-20 18:22:53 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2001-04-20 12:22:53 -0600 |
commit | 2c2ef4b9aca868e63528e6547fdc751334529871 (patch) | |
tree | 67f663fd312298066c9d88984f27195fe3bb4040 | |
parent | aa1826e2c4728c1ec3215b4770e0fe29b1500dac (diff) | |
download | gcc-2c2ef4b9aca868e63528e6547fdc751334529871.zip gcc-2c2ef4b9aca868e63528e6547fdc751334529871.tar.gz gcc-2c2ef4b9aca868e63528e6547fdc751334529871.tar.bz2 |
* config/pa/som.h (NM_FLAGS): Define.
From-SVN: r41467
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/pa/som.h | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 893f79d..99e7b9b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Fri Apr 20 12:24:50 2001 Jeffrey A Law (law@cygnus.com) + + * config/pa/som.h (NM_FLAGS): Define. + 2001-04-20 Bernd Schmidt <bernds@redhat.com> * ia64.h (MD_SCHED_REORDER, MD_SCHED_REORDER2): Pass CLOCK to called diff --git a/gcc/config/pa/som.h b/gcc/config/pa/som.h index 57f69ac..ae7ae04 100644 --- a/gcc/config/pa/som.h +++ b/gcc/config/pa/som.h @@ -51,6 +51,11 @@ Boston, MA 02111-1307, USA. */ fprintf (FILE, \ "\t.stabs \"\",%d,0,0,L$text_end0000\nL$text_end0000:\n", N_SO) +/* The HP supplied NM will print out the subspace names for each symbol it + finds, which can cause false matches when looking for ctors/dtors. The + "-p" argument changes the output to not include subspace names. */ +#define NM_FLAGS "-p -n" + /* HPUX has a program 'chatr' to list the dependencies of dynamically linked executables and shared libraries. */ #define LDD_SUFFIX "chatr" |