File tree 7 files changed +1
-15
lines changed
7 files changed +1
-15
lines changed Original file line number Diff line number Diff line change @@ -151,10 +151,6 @@ while [[ $# > 0 ]]; do
151
151
arguments=" $arguments /p:Coverage=true"
152
152
shift 1
153
153
;;
154
- -stripsymbols)
155
- arguments=" $arguments /p:BuildNativeStripSymbols=true"
156
- shift 1
157
- ;;
158
154
-runtimeconfiguration)
159
155
val=" $( tr ' [:lower:]' ' [:upper:]' <<< ${2: 0: 1} ) ${2: 1} "
160
156
arguments=" $arguments /p:RuntimeConfiguration=$val "
Original file line number Diff line number Diff line change @@ -187,7 +187,6 @@ usage()
187
187
echo " -portablebuild: pass -portablebuild=false to force a non-portable build."
188
188
echo " -skipconfigure: skip build configuration."
189
189
echo " -skipgenerateversion: disable version generation even if MSBuild is supported."
190
- echo " -stripsymbols: skip native image generation."
191
190
echo " -verbose: optional argument to enable verbose build output."
192
191
echo " "
193
192
echo " Additional Options:"
@@ -336,9 +335,6 @@ while :; do
336
335
__SkipGenerateVersion=1
337
336
;;
338
337
339
- stripsymbols|-stripsymbols)
340
- ;;
341
-
342
338
verbose|-verbose)
343
339
__VerboseBuild=1
344
340
;;
Original file line number Diff line number Diff line change @@ -123,7 +123,6 @@ jobs:
123
123
value : >-
124
124
$(Build.SourcesDirectory)/installer.sh --restore --build --ci --test
125
125
-configuration $(_BuildConfig)
126
- /p:StripSymbols=true
127
126
$(LiveOverridePathArgs)
128
127
$(CommonMSBuildArgs)
129
128
$(OfficialBuildArg)
@@ -192,7 +191,6 @@ jobs:
192
191
$(LiveOverridePathArgs)
193
192
$(CommonMSBuildArgs)
194
193
$(OutputRidArg)
195
- /p:StripSymbols=true
196
194
197
195
- name : PublishArguments
198
196
value : >-
Original file line number Diff line number Diff line change 11
11
<_CoreClrBuildArg Condition =" '$(ContinuousIntegrationBuild)' == 'true'" Include =" -ci" />
12
12
<_CoreClrBuildArg Condition =" '$(CrossBuild)' == 'true'" Include =" -cross" />
13
13
<_CoreClrBuildArg Condition =" $([MSBuild]::IsOsPlatform(Windows)) and ('$(TargetArchitecture)' == 'x86' or '$(TargetArchitecture)' == 'x64') and '$(Configuration)' == 'Release'" Include =" -enforcepgo" />
14
- <_CoreClrBuildArg Condition =" !$([MSBuild]::IsOsPlatform(Windows)) and '$(Configuration)' == 'Release'" Include =" -stripsymbols" />
15
14
<_CoreClrBuildArg Condition =" $([MSBuild]::IsOsPlatform(Windows)) and '$(CrossDac)' != ''" Include =" -$(CrossDac)dac" />
16
15
<_CoreClrBuildArg Condition =" '$(OfficialBuildId)' != ''" Include =" /p:OfficialBuildId=$(OfficialBuildId)" />
17
16
</ItemGroup >
Original file line number Diff line number Diff line change 32
32
<BuildArgs Condition =" '$(CrossBuild)' == 'true'" >$(BuildArgs) -cross</BuildArgs >
33
33
<BuildArgs Condition =" '$(Compiler)' != ''" >$(BuildArgs) $(Compiler)</BuildArgs >
34
34
<BuildArgs Condition =" '$(CMakeArgs)' != ''" >$(BuildArgs) $(CMakeArgs)</BuildArgs >
35
- <BuildArgs Condition =" '$(StripSymbols)' == 'true'" >$(BuildArgs) -stripsymbols</BuildArgs >
36
35
</PropertyGroup >
37
36
38
37
<!--
Original file line number Diff line number Diff line change 20
20
then we should consider calling Environment.ProcessorCount
21
21
-->
22
22
<_ProcessorCountArg > -numproc $(MSBuildNodeCount)</_ProcessorCountArg >
23
- <_StripSymbolsArg Condition =" '$(BuildNativeStripSymbols)' == 'true' and '$(TargetOS)' != 'WebAssembly' and '$(TargetOS)' != 'iOS'" > -stripsymbols</_StripSymbolsArg >
24
23
<_PortableBuildArg Condition =" '$(PortableBuild)' != 'true'" > -portablebuild=false</_PortableBuildArg >
25
24
<_CrossBuildArg Condition =" '$(CrossBuild)' == 'true'" > -cross</_CrossBuildArg >
26
25
<_CMakeArgs Condition =" '$(CMakeArgs)' != ''" > $(CMakeArgs)</_CMakeArgs >
30
29
used to force a specific compiler toolset.
31
30
-->
32
31
<_BuildNativeCompilerArg Condition =" '$(BuildNativeCompiler)' != ''" > $(BuildNativeCompiler)</_BuildNativeCompilerArg >
33
- <_BuildNativeUnixArgs >$(_BuildNativeArgs)$(_ProcessCountArg)$(_StripSymbolsArg)$( _PortableBuildArg)$(_CrossBuildArg)$(_BuildNativeCompilerArg)$(_CMakeArgs) $(Compiler)</_BuildNativeUnixArgs >
32
+ <_BuildNativeUnixArgs >$(_BuildNativeArgs)$(_ProcessCountArg)$(_PortableBuildArg)$(_CrossBuildArg)$(_BuildNativeCompilerArg)$(_CMakeArgs) $(Compiler)</_BuildNativeUnixArgs >
34
33
</PropertyGroup >
35
34
36
35
<Message Text =" $(MSBuildProjectDirectory)/build-native.sh $(_BuildNativeUnixArgs)" Importance =" High" />
Original file line number Diff line number Diff line change @@ -96,7 +96,6 @@ package() {
96
96
./build.sh \
97
97
-c Release \
98
98
/p:PortableBuild=true \
99
- /p:StripSymbols=true \
100
99
/p:TargetArchitecture=x64 \
101
100
/bl:artifacts/msbuild.portable.binlog
102
101
You can’t perform that action at this time.
0 commit comments