mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-15 14:54:09 +02:00
Take additional link flags into consideration in cache check
This commit is contained in:
parent
0e579d07b9
commit
c08af16f0b
1 changed files with 7 additions and 7 deletions
|
@ -601,6 +601,13 @@ namespace IDE
|
||||||
linkLine.Append(" ");
|
linkLine.Append(" ");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (options.mBuildOptions.mOtherLinkFlags.Length != 0)
|
||||||
|
{
|
||||||
|
var linkFlags = scope String();
|
||||||
|
gApp.ResolveConfigString(gApp.mPlatformName, workspaceOptions, project, options, options.mBuildOptions.mOtherLinkFlags, "link flags", linkFlags);
|
||||||
|
linkLine.Append(linkFlags, " ");
|
||||||
|
}
|
||||||
|
|
||||||
UpdateCacheStr(project, linkLine, workspaceOptions, options, depPaths, libPaths);
|
UpdateCacheStr(project, linkLine, workspaceOptions, options, depPaths, libPaths);
|
||||||
|
|
||||||
if (project.mNeedsTargetRebuild)
|
if (project.mNeedsTargetRebuild)
|
||||||
|
@ -611,13 +618,6 @@ namespace IDE
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (options.mBuildOptions.mOtherLinkFlags.Length != 0)
|
|
||||||
{
|
|
||||||
var linkFlags = scope String();
|
|
||||||
gApp.ResolveConfigString(gApp.mPlatformName, workspaceOptions, project, options, options.mBuildOptions.mOtherLinkFlags, "link flags", linkFlags);
|
|
||||||
linkLine.Append(linkFlags, " ");
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
String compilerExePath = scope String();
|
String compilerExePath = scope String();
|
||||||
#if BF_PLATFORM_WINDOWS
|
#if BF_PLATFORM_WINDOWS
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue