This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: Testsuite failures due to Makefile issue
- From: "Zack Weinberg" <zack at codesourcery dot com>
- To: "Ulrich Weigand" <weigand at i1 dot informatik dot uni-erlangen dot de>
- Cc: libstdc++ at gcc dot gnu dot org, gcc at gcc dot gnu dot org
- Date: Tue, 23 Sep 2003 14:49:45 -0700
- Subject: Re: Testsuite failures due to Makefile issue
- References: <200309232141.h8NLfgi22024@faui1g.informatik.uni-erlangen.de>
"Ulrich Weigand" <weigand@i1.informatik.uni-erlangen.de> writes:
> if GLIBCXX_BUILD_VERSIONED_SHLIB
> libstdc___la_DEPENDENCIES = libstdc++-symbol.ver $(libstdc___la_LIBADD)
> else
> libstdc___la_DEPENDENCIES = $(libstdc___la_LIBADD)
> endif
This will work. More consistent with the usual idiom would be to
arrange (in the same place that sets GLIBCXX_BUILD_VERSIONED_SHLIB)
for $(libstdc___symbol_ver) to expand to libstdc++-symbol.ver if
GLIBCXX_BUILD_VERSIONED_SHLIB, and to the empty string otherwise; then
set
libstdc___la_DEPENDENCIES = $(libstdc___symbol_ver) $(libstdc___la_LIBADD)
> (B.t.w. is GLIBCXX_BUILD_VERSIONED_SHLIB supposed to be set
> on a Linux build or not?)
I believe it is.
zw