summaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorLakshmi Priya Sekar <lasekar@microsoft.com>2016-07-29 13:51:43 -0700
committerLakshmi Priya Sekar <lasekar@microsoft.com>2016-07-29 17:47:40 -0700
commit9474660fcde42d45ad17390a69e497c830691b67 (patch)
tree6be1a4167ef4dcbc43f1b485f0da8e89db997d52 /build.sh
parent57efa01a2e7c52aa33f67d1a49b993ea363a290e (diff)
downloadcoreclr-9474660fcde42d45ad17390a69e497c830691b67.tar.gz
coreclr-9474660fcde42d45ad17390a69e497c830691b67.tar.bz2
coreclr-9474660fcde42d45ad17390a69e497c830691b67.zip
Respond to PR feedback.
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/build.sh b/build.sh
index 0e10b2cbcb..371ceb5868 100755
--- a/build.sh
+++ b/build.sh
@@ -44,7 +44,6 @@ usage()
echo "verbose - optional argument to enable verbose build output."
echo "-skiprestore: skip restoring packages ^(default: packages are restored during build^)."
echo "-disableoss: Disable Open Source Signing for System.Private.CoreLib."
- echo "-priority=^<N^> : specify a set of test that will be built and run, with priority N."
echo "-sequential: force a non-parallel build ^(default is to build in parallel"
echo " using all processors^)."
echo "-officialbuildid=^<ID^>: specify the official build ID to be used by this build."
@@ -174,10 +173,12 @@ build_coreclr()
# Regenerate the CMake solution
echo "Invoking \"$__ProjectRoot/src/pal/tools/gen-buildsys-clang.sh\" \"$__ProjectRoot\" $__ClangMajorVersion $__ClangMinorVersion $__BuildArch $__BuildType $__CodeCoverage $__IncludeTests $generator $__cmakeargs"
"$__ProjectRoot/src/pal/tools/gen-buildsys-clang.sh" "$__ProjectRoot" $__ClangMajorVersion $__ClangMinorVersion $__BuildArch $__BuildType $__CodeCoverage $__IncludeTests $generator "$__cmakeargs"
+ popd
fi
# Check that the makefiles were created.
-
+ pushd "$__IntermediatesDir"
+
if [ ! -f "$__IntermediatesDir/$buildFile" ]; then
echo "Failed to generate native component build project!"
exit 1