1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-15 14:54:09 +02:00

Disable safeseh for Win32 ld-link

This commit is contained in:
Brian Fiete 2020-10-30 14:57:53 -07:00
parent 0c2e3bead9
commit d15057ca6b

View file

@ -1093,6 +1093,9 @@ namespace IDE
ltoPath.Append("/ltocache");
IDEUtils.AppendWithOptionalQuotes(linkLine, ltoPath);
}
if ((mPlatformType == .Windows) && (!is64Bit))
linkLine.Append(" /safeseh:no");
}
if (options.mBuildOptions.mBeefLibType != .DynamicDebug)
@ -1300,7 +1303,7 @@ namespace IDE
if (filePath.Contains("test2.cpp"))
{
NOP!();
\ NOP!();
}
bool needsRebuild = true;