Add support for a new environment variable ROS_GENERATE_RSYM to disable RSYM during the build

Patch by Alex

svn path=/trunk/; revision=34049
This commit is contained in:
Colin Finck 2008-06-22 18:38:12 +00:00
parent c251e18523
commit 33c4221b1e

View file

@ -1550,10 +1550,14 @@ MingwModuleHandler::GenerateCleanObjectsAsYouGoCode () const
void
MingwModuleHandler::GenerateRunRsymCode () const
{
fprintf ( fMakefile,
"ifneq ($(ROS_GENERATE_RSYM),no)\n" );
fprintf ( fMakefile,
"\t$(ECHO_RSYM)\n" );
fprintf ( fMakefile,
"\t$(Q)$(RSYM_TARGET) $@ $@\n\n" );
fprintf ( fMakefile,
"endif\n" );
}
void