summaryrefslogtreecommitdiff
path: root/Documentation/building
diff options
context:
space:
mode:
authorBrian Robbins <brianrob@microsoft.com>2018-05-22 19:13:20 -0700
committerGitHub <noreply@github.com>2018-05-22 19:13:20 -0700
commit7d930115ebd1a170af6b41caab3bb3906c476685 (patch)
treebafc9c140466b91ee6cf097709bd24d12bb9d350 /Documentation/building
parentd629c9967bd401c21123873c7d5175e721d40feb (diff)
downloadcoreclr-7d930115ebd1a170af6b41caab3bb3906c476685.tar.gz
coreclr-7d930115ebd1a170af6b41caab3bb3906c476685.tar.bz2
coreclr-7d930115ebd1a170af6b41caab3bb3906c476685.zip
Remove -Rebuild option from build scripts (#18089)
Diffstat (limited to 'Documentation/building')
-rw-r--r--Documentation/building/cross-building.md6
-rw-r--r--Documentation/building/windows-instructions.md1
2 files changed, 3 insertions, 4 deletions
diff --git a/Documentation/building/cross-building.md b/Documentation/building/cross-building.md
index 20fe26eb9c..5a4060c910 100644
--- a/Documentation/building/cross-building.md
+++ b/Documentation/building/cross-building.md
@@ -79,11 +79,11 @@ Once the rootfs has been generated, it will be possible to cross compile CoreCLR
So, without `ROOTFS_DIR`:
- ben@ubuntu ~/git/coreclr/ $ ./build.sh arm debug verbose cross -rebuild
+ ben@ubuntu ~/git/coreclr/ $ ./build.sh arm debug verbose cross
And with:
- ben@ubuntu ~/git/coreclr/ $ ROOTFS_DIR=/home/ben/coreclr-cross/arm ./build.sh arm debug verbose cross -rebuild
+ ben@ubuntu ~/git/coreclr/ $ ROOTFS_DIR=/home/ben/coreclr-cross/arm ./build.sh arm debug verbose cross
As usual the resulting binaries will be found in `bin/Product/BuildOS.BuildArch.BuildType/`
@@ -115,7 +115,7 @@ The following instructions assume you are on a Linux machine such as Ubuntu 14.0
To build System.Private.CoreLib for Linux, run the following command:
```
- lgs@ubuntu ~/git/coreclr/ $ build.sh arm debug verbose -rebuild
+ lgs@ubuntu ~/git/coreclr/ $ build.sh arm debug verbose
```
The output is at bin/Product/<BuildOS>.arm.Debug/System.Private.CoreLib.dll.
diff --git a/Documentation/building/windows-instructions.md b/Documentation/building/windows-instructions.md
index e217273587..7e9bfef03e 100644
--- a/Documentation/building/windows-instructions.md
+++ b/Documentation/building/windows-instructions.md
@@ -144,7 +144,6 @@ Build has a number of options that you can learn about using build -?. Some of
* -skiptests - don't build the tests. This can shorten build times quite a bit, but means you can't run tests.
* -release - build the 'Release' build type that does not have extra development-time checking compiled in.
- * -rebuild - force the build not to be incremental but to recompile everything.
You want this if you are going to do performance testing on your build.
See [Using Your Build](../workflow/UsingYourBuild.md) for instructions on running code with your build.