Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnkit Jain <radical@gmail.com>2021-07-14 17:47:03 +0300
committerGitHub <noreply@github.com>2021-07-14 17:47:03 +0300
commitd953229d5429d2ffde833740dd481aab864d3e0c (patch)
tree74d4105746511db61bdd80f69a010bd057e67fb8 /src/tasks/WasmAppBuilder
parent9ad44f8347be52df4070d85264bfe528f34ba3a0 (diff)
[wasm] Run `Wasm.Build.Tests` against workloads (#54451)
Co-authored-by: Larry Ewing <lewing@microsoft.com>
Diffstat (limited to 'src/tasks/WasmAppBuilder')
-rw-r--r--src/tasks/WasmAppBuilder/EmccCompile.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tasks/WasmAppBuilder/EmccCompile.cs b/src/tasks/WasmAppBuilder/EmccCompile.cs
index 78a6a4b1faa..2a8a2f12cbb 100644
--- a/src/tasks/WasmAppBuilder/EmccCompile.cs
+++ b/src/tasks/WasmAppBuilder/EmccCompile.cs
@@ -123,7 +123,7 @@ namespace Microsoft.WebAssembly.Build.Tasks
if (exitCode != 0)
{
- Log.LogError($"Failed to compile {srcFile} -> {objFile}: {output}");
+ Log.LogError($"Failed to compile {srcFile} -> {objFile}{Environment.NewLine}{output}");
return false;
}
@@ -135,7 +135,7 @@ namespace Microsoft.WebAssembly.Build.Tasks
}
catch (Exception ex)
{
- Log.LogError($"Failed to compile {srcFile} -> {objFile}: {ex.Message}");
+ Log.LogError($"Failed to compile {srcFile} -> {objFile}{Environment.NewLine}{ex.Message}");
return false;
}
}