Attempt to fix regression from 32bd72fecd
This commit is contained in:
@@ -518,7 +518,7 @@ namespace Flax.Build.Platforms
|
|||||||
var args = new List<string>();
|
var args = new List<string>();
|
||||||
args.AddRange(options.LinkEnv.CustomArgs);
|
args.AddRange(options.LinkEnv.CustomArgs);
|
||||||
{
|
{
|
||||||
args.Add(string.Format("-o \"{0}\"", outputFilePath));
|
args.Add(string.Format("-o \"{0}\"", outputFilePath.Replace('\\', '/')));
|
||||||
|
|
||||||
if (!options.LinkEnv.DebugInformation)
|
if (!options.LinkEnv.DebugInformation)
|
||||||
{
|
{
|
||||||
@@ -605,8 +605,7 @@ namespace Flax.Build.Platforms
|
|||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public override void LinkFiles(TaskGraph graph, BuildOptions options, string outputFilePath)
|
public override void LinkFiles(TaskGraph graph, BuildOptions options, string outputFilePath)
|
||||||
{
|
{
|
||||||
//outputFilePath = outputFilePath.Replace('\\', '/');
|
outputFilePath = Utilities.NormalizePath(outputFilePath);
|
||||||
outputFilePath = Utilities.NormalizePath(outputFilePath.Replace('\\', '/'));
|
|
||||||
|
|
||||||
Task linkTask;
|
Task linkTask;
|
||||||
switch (options.LinkEnv.Output)
|
switch (options.LinkEnv.Output)
|
||||||
|
|||||||
Reference in New Issue
Block a user