On Thu, Apr 22, 2010 at 10:38 AM, Rainer Orth <r...@cebitec.uni-bielefeld.de> wrote: > Jack Howarth <howa...@bromo.med.uc.edu> writes: > >> Index: configure.ac >> =================================================================== >> --- configure.ac (revision 158487) >> +++ configure.ac (working copy) >> @@ -4456,15 +4456,27 @@ >> pluginlibs= >> if test x"$enable_plugin" = x"yes"; then >> >> + if test -z "$gcc_cv_objdump"; then >> + case "${host}" in >> + *-*-darwin*) >> + export_sym_check="$gcc_cv_nm -g" >> + ;; >> + *) >> + export_sym_check="$gcc_cv_nm -D" >> + ;; >> + esac > > This is wrong at least on Solaris and IRIX, which don't have nm -D > either. Please restrict use of nm -D to platforms where it is known to > work.
And objdump does work on Solaris / IRIX? Ciao! Steven