summaryrefslogtreecommitdiff
path: root/build.cmd
diff options
context:
space:
mode:
authorVictor "Nate" Graf <nategraf1@gmail.com>2017-08-22 10:02:51 -0700
committerGitHub <noreply@github.com>2017-08-22 10:02:51 -0700
commitce54898a65f89b95537a943a48bae1c60cd249ed (patch)
tree37e8d2f9352fdde998f194e5e110d75cc634aadf /build.cmd
parent10c89f401b3b7cf4cc095649455ce4d2efd33b18 (diff)
downloadcoreclr-ce54898a65f89b95537a943a48bae1c60cd249ed.tar.gz
coreclr-ce54898a65f89b95537a943a48bae1c60cd249ed.tar.bz2
coreclr-ce54898a65f89b95537a943a48bae1c60cd249ed.zip
Follow-up: Add enforce PGO to official builds (#13437)
* Add variables to pipeline to enable enforcepgo for Release * Address review
Diffstat (limited to 'build.cmd')
-rw-r--r--build.cmd6
1 files changed, 2 insertions, 4 deletions
diff --git a/build.cmd b/build.cmd
index b0a480a4c9..80b052484d 100644
--- a/build.cmd
+++ b/build.cmd
@@ -242,12 +242,10 @@ set __RunArgs=-BuildOS=%__BuildOS% -BuildType=%__BuildType% -BuildArch=%__BuildA
if %__EnforcePgo%==1 (
if %__BuildArchArm%==1 (
- echo Error: enforcepgo cannot be used with arm architecture
- goto Usage
+ echo NOTICE: enforcepgo does nothing on arm architecture
)
if %__BuildArchArm64%==1 (
- echo Error: enforcepgo cannot be used with arm64 architecture
- goto Usage
+ echo NOTICE: enforcepgo does nothing on arm64 architecture
)
)