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:
authorAdeel Mujahid <adeelbm@outlook.com>2020-03-26 01:35:21 +0300
committerGitHub <noreply@github.com>2020-03-26 01:35:21 +0300
commit6eedf8e4b9b19265272bf25b56b9eb22c4b77944 (patch)
treeb4f7aa3ca17a9aaf77274ceb1ae3cb097a0d2a82 /eng/build.sh
parentc64210e5e7b1707522d3d3cf3922579bf4e67944 (diff)
Remove -stripsymbols option from build scripts (#34076)
Symbol stripping is on by default in cmake scripts. This cleans up the remaining places where the no-op `-stripsymbols` option is passed from shell scripts via `.proj` files. Fixes #32957
Diffstat (limited to 'eng/build.sh')
-rwxr-xr-xeng/build.sh4
1 files changed, 0 insertions, 4 deletions
diff --git a/eng/build.sh b/eng/build.sh
index 48ee6d9490f..52edacae648 100755
--- a/eng/build.sh
+++ b/eng/build.sh
@@ -151,10 +151,6 @@ while [[ $# > 0 ]]; do
arguments="$arguments /p:Coverage=true"
shift 1
;;
- -stripsymbols)
- arguments="$arguments /p:BuildNativeStripSymbols=true"
- shift 1
- ;;
-runtimeconfiguration)
val="$(tr '[:lower:]' '[:upper:]' <<< ${2:0:1})${2:1}"
arguments="$arguments /p:RuntimeConfiguration=$val"