Fixed: Only have one ’release’ option for Jake.

Removed the ’release-inline’ option when building as it is not practical to have two different options. The release build now always has inlined msgSend functions. If a release build is needed without inlined msgSend functions an edit of the ”-O2” option to ”-O” in the Jakefile is needed.
This commit is contained in:
Martin Carlberg
2015-10-26 09:53:39 +01:00
parent 3844b88f7e
commit 5541381afe
5 changed files with 6 additions and 21 deletions
-7
View File
@@ -598,13 +598,6 @@ task ("release", function()
spawnJake("build");
});
task ("release-inline", function()
{
SYSTEM.env["CONFIG"] = "Release";
SYSTEM.env['INLINE_MSG_SEND'] = true;
spawnJake("build");
});
task ("debug", function()
{
SYSTEM.env["CONFIG"] = "Debug";