mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 20:42:21 +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
|
@ -600,6 +600,13 @@ namespace IDE
|
|||
IDEUtils.AppendWithOptionalQuotes(linkLine, libPath);
|
||||
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);
|
||||
|
||||
|
@ -611,13 +618,6 @@ namespace IDE
|
|||
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();
|
||||
#if BF_PLATFORM_WINDOWS
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue