mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 22:56:00 +00:00
Prevent passing of useless parameters
Decide how to compile a file at last moment, in GenerateGccCommand() Fix a memory leak svn path=/trunk/; revision=32528
This commit is contained in:
parent
7449ba7de2
commit
2e5a259812
2 changed files with 62 additions and 140 deletions
|
@ -855,7 +855,7 @@ MingwModuleHandler::GenerateMacro (
|
||||||
|
|
||||||
if ( generatingCompilerMacro )
|
if ( generatingCompilerMacro )
|
||||||
{
|
{
|
||||||
string compilerParameters = GenerateCompilerParametersFromVector ( data.compilerFlags , CompilerTypeDontCare );
|
string compilerParameters = GenerateCompilerParametersFromVector ( data.compilerFlags, CompilerTypeDontCare );
|
||||||
if ( compilerParameters.size () > 0 )
|
if ( compilerParameters.size () > 0 )
|
||||||
{
|
{
|
||||||
fprintf (
|
fprintf (
|
||||||
|
@ -1249,6 +1249,12 @@ MingwModuleHandler::GetPrecompiledHeaderFilename () const
|
||||||
ReplaceExtension ( module.pch->file.name, "_" + module.name + ".gch" ) );
|
ReplaceExtension ( module.pch->file.name, "_" + module.name + ".gch" ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Rule arRule1 ( "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext).a: $($(module_name)_OBJS) | $(INTERMEDIATE)$(SEP)$(source_dir)\n",
|
||||||
|
"$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext).a",
|
||||||
|
"$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)", NULL );
|
||||||
|
Rule arRule2 ( "\t$(ECHO_AR)\n"
|
||||||
|
"\t${ar} -rc $@ $($(module_name)_OBJS)\n",
|
||||||
|
NULL );
|
||||||
Rule gasRule ( "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).o: $(source) $(module_rbuild) | $(INTERMEDIATE)$(SEP)$(source_dir)\n"
|
Rule gasRule ( "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).o: $(source) $(module_rbuild) | $(INTERMEDIATE)$(SEP)$(source_dir)\n"
|
||||||
"\t$(ECHO_GAS)\n"
|
"\t$(ECHO_GAS)\n"
|
||||||
"\t${gcc} -x assembler-with-cpp -c $< -o $@ -D__ASM__ $($(module_name)_CFLAGS)\n",
|
"\t${gcc} -x assembler-with-cpp -c $< -o $@ -D__ASM__ $($(module_name)_CFLAGS)\n",
|
||||||
|
@ -1316,18 +1322,39 @@ Rule widlTlbRule ( "$(OUTPUT)$(SEP)$(source_dir)$(SEP)$(module_name).tlb: $(sour
|
||||||
void
|
void
|
||||||
MingwModuleHandler::GenerateGccCommand (
|
MingwModuleHandler::GenerateGccCommand (
|
||||||
const FileLocation* sourceFile,
|
const FileLocation* sourceFile,
|
||||||
const string& extraDependencies,
|
const string& extraDependencies )
|
||||||
const string& cc,
|
|
||||||
const string& cflagsMacro )
|
|
||||||
{
|
{
|
||||||
const FileLocation *generatedSourceFileName = GetActualSourceFilename ( sourceFile );
|
const FileLocation *generatedSourceFileName = GetActualSourceFilename ( sourceFile );
|
||||||
const FileLocation *pchFilename = GetPrecompiledHeaderFilename ();
|
const FileLocation *pchFilename = GetPrecompiledHeaderFilename ();
|
||||||
string dependencies = backend->GetFullName ( *generatedSourceFileName );
|
string dependencies = backend->GetFullName ( *generatedSourceFileName );
|
||||||
|
delete generatedSourceFileName;
|
||||||
|
|
||||||
|
string cc;
|
||||||
|
CompilerType type;
|
||||||
|
string extension = GetExtension ( *sourceFile );
|
||||||
|
if ( extension == ".cc" || extension == ".cpp" || extension == ".cxx" )
|
||||||
|
{
|
||||||
|
cc = ( module.host == HostTrue ? "${host_gpp}" : "${gpp}" );
|
||||||
|
type = CompilerTypeCPP;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
cc = ( module.host == HostTrue ? "${host_gcc}" : "${gcc}" );
|
||||||
|
type = CompilerTypeCC;
|
||||||
|
}
|
||||||
|
string flags = GenerateCompilerParametersFromVector ( module.non_if_data.compilerFlags, type );
|
||||||
|
if ( flags != "" )
|
||||||
|
flags = cflagsMacro + " " + flags;
|
||||||
|
else
|
||||||
|
flags = cflagsMacro;
|
||||||
|
|
||||||
if ( extraDependencies != "" )
|
if ( extraDependencies != "" )
|
||||||
dependencies += " " + extraDependencies;
|
dependencies += " " + extraDependencies;
|
||||||
if ( pchFilename )
|
if ( pchFilename )
|
||||||
|
{
|
||||||
dependencies += " " + backend->GetFullName ( *pchFilename );
|
dependencies += " " + backend->GetFullName ( *pchFilename );
|
||||||
|
delete pchFilename;
|
||||||
|
}
|
||||||
|
|
||||||
/* WIDL generated headers may be used */
|
/* WIDL generated headers may be used */
|
||||||
vector<FileLocation> rpcDependencies;
|
vector<FileLocation> rpcDependencies;
|
||||||
|
@ -1336,22 +1363,20 @@ MingwModuleHandler::GenerateGccCommand (
|
||||||
dependencies += " " + NormalizeFilename ( module.xmlbuildFile );
|
dependencies += " " + NormalizeFilename ( module.xmlbuildFile );
|
||||||
|
|
||||||
const FileLocation *objectFilename = GetObjectFilename (
|
const FileLocation *objectFilename = GetObjectFilename (
|
||||||
sourceFile, module, &clean_files );
|
sourceFile, module, NULL );
|
||||||
fprintf ( fMakefile,
|
fprintf ( fMakefile,
|
||||||
"%s: %s | %s\n",
|
"%s: %s | %s\n",
|
||||||
backend->GetFullName ( *objectFilename ).c_str (),
|
backend->GetFullName ( *objectFilename ).c_str (),
|
||||||
dependencies.c_str (),
|
dependencies.c_str (),
|
||||||
backend->GetFullPath ( *objectFilename ).c_str () );
|
backend->GetFullPath ( *objectFilename ).c_str () );
|
||||||
|
CLEAN_FILE(*objectFilename);
|
||||||
|
delete objectFilename;
|
||||||
|
|
||||||
fprintf ( fMakefile, "\t$(ECHO_CC)\n" );
|
fprintf ( fMakefile, "\t$(ECHO_CC)\n" );
|
||||||
fprintf ( fMakefile,
|
fprintf ( fMakefile,
|
||||||
"\t%s -c $< -o $@ %s\n",
|
"\t%s -c $< -o $@ %s\n",
|
||||||
cc.c_str (),
|
cc.c_str (),
|
||||||
cflagsMacro.c_str () );
|
flags.c_str () );
|
||||||
|
|
||||||
delete objectFilename;
|
|
||||||
delete generatedSourceFileName;
|
|
||||||
if ( pchFilename )
|
|
||||||
delete pchFilename;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
string
|
string
|
||||||
|
@ -1409,13 +1434,7 @@ MingwModuleHandler::GetMcHeaderFilename ( const FileLocation *base ) const
|
||||||
void
|
void
|
||||||
MingwModuleHandler::GenerateCommands (
|
MingwModuleHandler::GenerateCommands (
|
||||||
const CompilationUnit& compilationUnit,
|
const CompilationUnit& compilationUnit,
|
||||||
const string& extraDependencies,
|
const string& extraDependencies )
|
||||||
const string& cc,
|
|
||||||
const string& cppc,
|
|
||||||
const string& cflagsMacro,
|
|
||||||
const string& nasmflagsMacro,
|
|
||||||
const string& windresflagsMacro,
|
|
||||||
const string& widlflagsMacro )
|
|
||||||
{
|
{
|
||||||
const FileLocation& sourceFile = compilationUnit.GetFilename ();
|
const FileLocation& sourceFile = compilationUnit.GetFilename ();
|
||||||
string extension = GetExtension ( sourceFile );
|
string extension = GetExtension ( sourceFile );
|
||||||
|
@ -1458,40 +1477,21 @@ MingwModuleHandler::GenerateCommands (
|
||||||
if ( customRule )
|
if ( customRule )
|
||||||
customRule->Execute ( fMakefile, backend, module, &sourceFile, clean_files );
|
customRule->Execute ( fMakefile, backend, module, &sourceFile, clean_files );
|
||||||
|
|
||||||
string flags = cflagsMacro;
|
if ( extension == ".c" || extension == ".cc" || extension == ".cpp" || extension == ".cxx" )
|
||||||
flags += " ";
|
|
||||||
if ( extension == ".c" )
|
|
||||||
{
|
{
|
||||||
flags += GenerateCompilerParametersFromVector ( module.non_if_data.compilerFlags , CompilerTypeCC );
|
|
||||||
GenerateGccCommand ( &sourceFile,
|
GenerateGccCommand ( &sourceFile,
|
||||||
GetCompilationUnitDependencies ( compilationUnit ) + extraDependencies,
|
GetCompilationUnitDependencies ( compilationUnit ) + extraDependencies );
|
||||||
cc,
|
|
||||||
flags );
|
|
||||||
}
|
|
||||||
else if ( extension == ".cc" ||
|
|
||||||
extension == ".cpp" ||
|
|
||||||
extension == ".cxx" )
|
|
||||||
{
|
|
||||||
flags += GenerateCompilerParametersFromVector ( module.non_if_data.compilerFlags , CompilerTypeCPP );
|
|
||||||
GenerateGccCommand ( &sourceFile,
|
|
||||||
GetCompilationUnitDependencies ( compilationUnit ) + extraDependencies,
|
|
||||||
cppc,
|
|
||||||
flags );
|
|
||||||
}
|
}
|
||||||
else if ( extension == ".spec" )
|
else if ( extension == ".spec" )
|
||||||
{
|
{
|
||||||
GenerateGccCommand ( &sourceFile,
|
GenerateGccCommand ( &sourceFile,
|
||||||
extraDependencies,
|
extraDependencies );
|
||||||
cc,
|
|
||||||
cflagsMacro );
|
|
||||||
}
|
}
|
||||||
else if ( extension == ".idl" &&
|
else if ( extension == ".idl" &&
|
||||||
(module.type == RpcServer) || (module.type == RpcClient) || (module.type == RpcProxy) )
|
( module.type == RpcServer ) || ( module.type == RpcClient ) || ( module.type == RpcProxy ) )
|
||||||
{
|
{
|
||||||
GenerateGccCommand ( &sourceFile,
|
GenerateGccCommand ( &sourceFile,
|
||||||
GetExtraDependencies ( &sourceFile ),
|
GetExtraDependencies ( &sourceFile ) );
|
||||||
cc,
|
|
||||||
cflagsMacro );
|
|
||||||
}
|
}
|
||||||
else if ( !customRule )
|
else if ( !customRule )
|
||||||
{
|
{
|
||||||
|
@ -1761,14 +1761,7 @@ MingwModuleHandler::GeneratePhonyTarget() const
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
MingwModuleHandler::GenerateObjectFileTargets (
|
MingwModuleHandler::GenerateObjectFileTargets ( const IfableData& data )
|
||||||
const IfableData& data,
|
|
||||||
const string& cc,
|
|
||||||
const string& cppc,
|
|
||||||
const string& cflagsMacro,
|
|
||||||
const string& nasmflagsMacro,
|
|
||||||
const string& windresflagsMacro,
|
|
||||||
const string& widlflagsMacro )
|
|
||||||
{
|
{
|
||||||
size_t i;
|
size_t i;
|
||||||
string moduleDependencies;
|
string moduleDependencies;
|
||||||
|
@ -1789,13 +1782,7 @@ MingwModuleHandler::GenerateObjectFileTargets (
|
||||||
for ( i = 0; i < compilationUnits.size (); i++ )
|
for ( i = 0; i < compilationUnits.size (); i++ )
|
||||||
{
|
{
|
||||||
GenerateCommands ( *compilationUnits[i],
|
GenerateCommands ( *compilationUnits[i],
|
||||||
moduleDependencies,
|
moduleDependencies );
|
||||||
cc,
|
|
||||||
cppc,
|
|
||||||
cflagsMacro,
|
|
||||||
nasmflagsMacro,
|
|
||||||
windresflagsMacro,
|
|
||||||
widlflagsMacro );
|
|
||||||
fprintf ( fMakefile,
|
fprintf ( fMakefile,
|
||||||
"\n" );
|
"\n" );
|
||||||
}
|
}
|
||||||
|
@ -1803,13 +1790,7 @@ MingwModuleHandler::GenerateObjectFileTargets (
|
||||||
const vector<If*>& ifs = data.ifs;
|
const vector<If*>& ifs = data.ifs;
|
||||||
for ( i = 0; i < ifs.size(); i++ )
|
for ( i = 0; i < ifs.size(); i++ )
|
||||||
{
|
{
|
||||||
GenerateObjectFileTargets ( ifs[i]->data,
|
GenerateObjectFileTargets ( ifs[i]->data );
|
||||||
cc,
|
|
||||||
cppc,
|
|
||||||
cflagsMacro,
|
|
||||||
nasmflagsMacro,
|
|
||||||
windresflagsMacro,
|
|
||||||
widlflagsMacro );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
vector<CompilationUnit*> sourceCompilationUnits;
|
vector<CompilationUnit*> sourceCompilationUnits;
|
||||||
|
@ -1817,37 +1798,24 @@ MingwModuleHandler::GenerateObjectFileTargets (
|
||||||
for ( i = 0; i < sourceCompilationUnits.size (); i++ )
|
for ( i = 0; i < sourceCompilationUnits.size (); i++ )
|
||||||
{
|
{
|
||||||
GenerateCommands ( *sourceCompilationUnits[i],
|
GenerateCommands ( *sourceCompilationUnits[i],
|
||||||
moduleDependencies,
|
moduleDependencies );
|
||||||
cc,
|
|
||||||
cppc,
|
|
||||||
cflagsMacro,
|
|
||||||
nasmflagsMacro,
|
|
||||||
windresflagsMacro,
|
|
||||||
widlflagsMacro );
|
|
||||||
}
|
}
|
||||||
CleanupCompilationUnitVector ( sourceCompilationUnits );
|
CleanupCompilationUnitVector ( sourceCompilationUnits );
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
MingwModuleHandler::GenerateObjectFileTargets (
|
MingwModuleHandler::GenerateObjectFileTargets ()
|
||||||
const string& cc,
|
|
||||||
const string& cppc,
|
|
||||||
const string& cflagsMacro,
|
|
||||||
const string& nasmflagsMacro,
|
|
||||||
const string& windresflagsMacro,
|
|
||||||
const string& widlflagsMacro )
|
|
||||||
{
|
{
|
||||||
const FileLocation *pchFilename = GetPrecompiledHeaderFilename ();
|
const FileLocation *pchFilename = GetPrecompiledHeaderFilename ();
|
||||||
|
|
||||||
if ( pchFilename )
|
if ( pchFilename )
|
||||||
{
|
{
|
||||||
|
string cc = ( module.host == HostTrue ? "${host_gcc}" : "${gcc}" );
|
||||||
|
string cppc = ( module.host == HostTrue ? "${host_gpp}" : "${gpp}" );
|
||||||
|
|
||||||
const FileLocation& baseHeaderFile = module.pch->file;
|
const FileLocation& baseHeaderFile = module.pch->file;
|
||||||
CLEAN_FILE ( *pchFilename );
|
CLEAN_FILE ( *pchFilename );
|
||||||
string dependencies = backend->GetFullName ( baseHeaderFile );
|
string dependencies = backend->GetFullName ( baseHeaderFile );
|
||||||
string flags = cflagsMacro;
|
|
||||||
CompilerType type = module.cplusplus ? CompilerTypeCPP : CompilerTypeCC;
|
|
||||||
flags += " ";
|
|
||||||
flags += GenerateCompilerParametersFromVector ( module.non_if_data.compilerFlags , type );
|
|
||||||
/* WIDL generated headers may be used */
|
/* WIDL generated headers may be used */
|
||||||
vector<FileLocation> rpcDependencies;
|
vector<FileLocation> rpcDependencies;
|
||||||
GetRpcHeaderDependencies ( rpcDependencies );
|
GetRpcHeaderDependencies ( rpcDependencies );
|
||||||
|
@ -1862,33 +1830,22 @@ MingwModuleHandler::GenerateObjectFileTargets (
|
||||||
"\t%s -o %s %s -g %s\n\n",
|
"\t%s -o %s %s -g %s\n\n",
|
||||||
module.cplusplus ? cppc.c_str() : cc.c_str(),
|
module.cplusplus ? cppc.c_str() : cc.c_str(),
|
||||||
backend->GetFullName ( *pchFilename ).c_str(),
|
backend->GetFullName ( *pchFilename ).c_str(),
|
||||||
flags.c_str(),
|
cflagsMacro.c_str(),
|
||||||
backend->GetFullName ( baseHeaderFile ).c_str() );
|
backend->GetFullName ( baseHeaderFile ).c_str() );
|
||||||
delete pchFilename;
|
delete pchFilename;
|
||||||
}
|
}
|
||||||
|
|
||||||
GenerateObjectFileTargets ( module.non_if_data,
|
GenerateObjectFileTargets ( module.non_if_data );
|
||||||
cc,
|
|
||||||
cppc,
|
|
||||||
cflagsMacro,
|
|
||||||
nasmflagsMacro,
|
|
||||||
windresflagsMacro,
|
|
||||||
widlflagsMacro );
|
|
||||||
fprintf ( fMakefile, "\n" );
|
fprintf ( fMakefile, "\n" );
|
||||||
}
|
}
|
||||||
|
|
||||||
/* caller needs to delete the returned object */
|
/* caller needs to delete the returned object */
|
||||||
const FileLocation*
|
const FileLocation*
|
||||||
MingwModuleHandler::GenerateArchiveTarget ( const string& ar,
|
MingwModuleHandler::GenerateArchiveTarget ()
|
||||||
const string& objs_macro ) const
|
|
||||||
{
|
{
|
||||||
const FileLocation *archiveFilename = GetModuleArchiveFilename ();
|
const FileLocation *archiveFilename = GetModuleArchiveFilename ();
|
||||||
|
|
||||||
fprintf ( fMakefile,
|
arRule1.Execute ( fMakefile, backend, module, archiveFilename, clean_files );
|
||||||
"%s: %s | %s\n",
|
|
||||||
backend->GetFullName ( *archiveFilename ).c_str (),
|
|
||||||
objs_macro.c_str (),
|
|
||||||
backend->GetFullPath ( *archiveFilename ).c_str() );
|
|
||||||
|
|
||||||
if ( module.type == StaticLibrary && module.importLibrary )
|
if ( module.type == StaticLibrary && module.importLibrary )
|
||||||
{
|
{
|
||||||
|
@ -1904,12 +1861,7 @@ MingwModuleHandler::GenerateArchiveTarget ( const string& ar,
|
||||||
delete definitionFilename;
|
delete definitionFilename;
|
||||||
}
|
}
|
||||||
|
|
||||||
fprintf ( fMakefile, "\t$(ECHO_AR)\n" );
|
arRule2.Execute ( fMakefile, backend, module, archiveFilename, clean_files );
|
||||||
|
|
||||||
fprintf ( fMakefile,
|
|
||||||
"\t%s -rc $@ %s\n",
|
|
||||||
ar.c_str (),
|
|
||||||
objs_macro.c_str ());
|
|
||||||
|
|
||||||
GenerateCleanObjectsAsYouGoCode ();
|
GenerateCleanObjectsAsYouGoCode ();
|
||||||
|
|
||||||
|
@ -2201,10 +2153,6 @@ MingwModuleHandler::GenerateOtherMacros ()
|
||||||
void
|
void
|
||||||
MingwModuleHandler::GenerateRules ()
|
MingwModuleHandler::GenerateRules ()
|
||||||
{
|
{
|
||||||
string cc = ( module.host == HostTrue ? "${host_gcc}" : "${gcc}" );
|
|
||||||
string cppc = ( module.host == HostTrue ? "${host_gpp}" : "${gpp}" );
|
|
||||||
string ar = ( module.host == HostTrue ? "${host_ar}" : "${ar}" );
|
|
||||||
|
|
||||||
string targetMacro = GetTargetMacro ( module );
|
string targetMacro = GetTargetMacro ( module );
|
||||||
//CLEAN_FILE ( targetMacro );
|
//CLEAN_FILE ( targetMacro );
|
||||||
CLEAN_FILE ( FileLocation ( SourceDirectory, "", targetMacro ) );
|
CLEAN_FILE ( FileLocation ( SourceDirectory, "", targetMacro ) );
|
||||||
|
@ -2227,17 +2175,11 @@ MingwModuleHandler::GenerateRules ()
|
||||||
|
|
||||||
if ( !ReferenceObjects ( module ) )
|
if ( !ReferenceObjects ( module ) )
|
||||||
{
|
{
|
||||||
const FileLocation* ar_target = GenerateArchiveTarget ( ar, objectsMacro );
|
const FileLocation* ar_target = GenerateArchiveTarget ();
|
||||||
CLEAN_FILE ( *ar_target );
|
|
||||||
delete ar_target;
|
delete ar_target;
|
||||||
}
|
}
|
||||||
|
|
||||||
GenerateObjectFileTargets ( cc,
|
GenerateObjectFileTargets ();
|
||||||
cppc,
|
|
||||||
cflagsMacro,
|
|
||||||
nasmflagsMacro,
|
|
||||||
windresflagsMacro,
|
|
||||||
widlflagsMacro );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
|
@ -152,32 +152,12 @@ private:
|
||||||
std::string GenerateNasmParameters () const;
|
std::string GenerateNasmParameters () const;
|
||||||
const FileLocation* GetPrecompiledHeaderFilename () const;
|
const FileLocation* GetPrecompiledHeaderFilename () const;
|
||||||
void GenerateGccCommand ( const FileLocation* sourceFile,
|
void GenerateGccCommand ( const FileLocation* sourceFile,
|
||||||
const std::string& extraDependencies,
|
const std::string& extraDependencies );
|
||||||
const std::string& cc,
|
|
||||||
const std::string& cflagsMacro );
|
|
||||||
void GenerateCommands ( const CompilationUnit& compilationUnit,
|
void GenerateCommands ( const CompilationUnit& compilationUnit,
|
||||||
const std::string& extraDependencies,
|
const std::string& extraDependencies );
|
||||||
const std::string& cc,
|
void GenerateObjectFileTargets ( const IfableData& data );
|
||||||
const std::string& cppc,
|
void GenerateObjectFileTargets ();
|
||||||
const std::string& cflagsMacro,
|
const FileLocation* GenerateArchiveTarget ();
|
||||||
const std::string& nasmflagsMacro,
|
|
||||||
const std::string& windresflagsMacro,
|
|
||||||
const std::string& widlflagsMacro );
|
|
||||||
void GenerateObjectFileTargets ( const IfableData& data,
|
|
||||||
const std::string& cc,
|
|
||||||
const std::string& cppc,
|
|
||||||
const std::string& cflagsMacro,
|
|
||||||
const std::string& nasmflagsMacro,
|
|
||||||
const std::string& windresflagsMacro,
|
|
||||||
const std::string& widlflagsMacro );
|
|
||||||
void GenerateObjectFileTargets ( const std::string& cc,
|
|
||||||
const std::string& cppc,
|
|
||||||
const std::string& cflagsMacro,
|
|
||||||
const std::string& nasmflagsMacro,
|
|
||||||
const std::string& windresflagsMacro,
|
|
||||||
const std::string& widlflagsMacro );
|
|
||||||
const FileLocation* GenerateArchiveTarget ( const std::string& ar,
|
|
||||||
const std::string& objs_macro ) const;
|
|
||||||
void GetMcObjectDependencies ( std::vector<FileLocation>& dependencies,
|
void GetMcObjectDependencies ( std::vector<FileLocation>& dependencies,
|
||||||
const FileLocation *file ) const;
|
const FileLocation *file ) const;
|
||||||
void GetSpecObjectDependencies ( std::vector<FileLocation>& dependencies,
|
void GetSpecObjectDependencies ( std::vector<FileLocation>& dependencies,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue