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

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManu <manu-silicon@users.noreply.github.com>2015-11-27 04:26:17 +0300
committerManu <manu-silicon@users.noreply.github.com>2015-12-01 10:07:11 +0300
commit9bd7c6ac8aa442d88ae936074db225fee12212ff (patch)
tree724d1809280aac892de10d8ce1a5a44236db76fe /build.sh
parent85461a4a77436b22b70e5b91a4fdf7fcdcfe5e39 (diff)
MSBuild log is now per architecture
To make it easier to debug errors when using cross compilation
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index 48353697a..1abea72e5 100755
--- a/build.sh
+++ b/build.sh
@@ -117,7 +117,7 @@ prepare_native_build()
build_managed_corert()
{
__buildproj=$__scriptpath/build.proj
- __buildlog=$__scriptpath/msbuild.log
+ __buildlog=$__scriptpath/msbuild.$__BuildArch.log
# TODO: Renable running tests
MONO29679=1 ReferenceAssemblyRoot=$__referenceassemblyroot mono $__msbuildpath "$__buildproj" /nologo /verbosity:minimal "/fileloggerparameters:Verbosity=normal;LogFile=$__buildlog" /t:Build /p:CleanedTheBuild=$__CleanBuild /p:SkipTests=true /p:TestNugetRuntimeId=$__TestNugetRuntimeId /p:ToolNugetRuntimeId=$__ToolNugetRuntimeId /p:OSEnvironment=Unix /p:OSGroup=$__BuildOS /p:Configuration=$__BuildType /p:Platform=$__BuildArch /p:UseRoslynCompiler=true /p:COMPUTERNAME=$(hostname) /p:USERNAME=$(id -un) "$@"