You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@stdcxx.apache.org by Martin Sebor <se...@roguewave.com> on 2006/11/10 23:39:21 UTC

Re: svn commit: r473351 - in /incubator/stdcxx/trunk/etc/config: src/EXPORT.cpp windows/configure.wsf windows/projects.js

faridz@apache.org wrote:
> Author: faridz
> Date: Fri Nov 10 06:33:27 2006
> New Revision: 473351
> 
> URL: http://svn.apache.org/viewvc?view=rev&rev=473351
> Log:
> 2006-11-10 Farid Zaripov <fa...@kyiv.vdiweb.com>
> 
> 	* EXPORT.cpp: Added "./" in LDOPTS.

Is this necessary for the Windows infrastructure to work correctly?
I don't think it's needed on UNIX (AFAIK, it causes no problems but
I don't know why it's there) but if the Windows linker needs it for
some reason a better solution might be to change the Windows scripts
and remove it from here as well as from all the other config tests
that use it. Otherwise, it might easily regress.

Here's a list of the other .cpp files that use the syntax:

$ grep -l LDOPTS etc/config/src/*.cpp
etc/config/src/COLLAPSE_STATIC_LOCALS.cpp
etc/config/src/COLLAPSE_TEMPLATE_LOCALS.cpp
etc/config/src/COLLAPSE_TEMPLATE_STATICS.cpp
etc/config/src/EXPORT.cpp
etc/config/src/EXTERN_FUNCTION_TEMPLATE.cpp
etc/config/src/EXTERN_INLINE.cpp
etc/config/src/EXTERN_MEMBER_TEMPLATE.cpp
etc/config/src/EXTERN_TEMPLATE.cpp
etc/config/src/EXTERN_TEMPLATE_BEFORE_DEFINITION.cpp
etc/config/src/IMPLICIT_INSTANTIATION.cpp
etc/config/src/LIB_EXCEPTIONS.cpp

Martin