summaryrefslogtreecommitdiff
path: root/tests/scripts
diff options
context:
space:
mode:
authorSwaroop Sridhar <swaroops@microsoft.com>2017-04-04 18:38:17 -0700
committerSwaroop Sridhar <Swaroop.Sridhar@microsoft.com>2017-04-06 17:13:43 -0700
commit459392db05a3e6adaf6355e9e16e97aeaa0bcfcb (patch)
tree744c158bc42ee0a3c279386dc03e4842172d0aba /tests/scripts
parent9c74cbac6c86f2c484c7ebd4c81a6aee6bd7cc25 (diff)
downloadcoreclr-459392db05a3e6adaf6355e9e16e97aeaa0bcfcb.tar.gz
coreclr-459392db05a3e6adaf6355e9e16e97aeaa0bcfcb.tar.bz2
coreclr-459392db05a3e6adaf6355e9e16e97aeaa0bcfcb.zip
Update ILLink build scripts
Update ILLINK build commands to reflect current CoreBuild of ILLinker. Also remove the line that sets DoNotEmbedDescriptors, since it is no longer necessary.
Diffstat (limited to 'tests/scripts')
-rw-r--r--tests/scripts/build_illink.cmd3
-rwxr-xr-xtests/scripts/build_illink.sh3
2 files changed, 2 insertions, 4 deletions
diff --git a/tests/scripts/build_illink.cmd b/tests/scripts/build_illink.cmd
index 67b707656a..726bd44c10 100644
--- a/tests/scripts/build_illink.cmd
+++ b/tests/scripts/build_illink.cmd
@@ -20,8 +20,7 @@ if defined doCLone (
)
pushd linker\corebuild
-call restore.cmd -RuntimeIdentifier=%rid%
-set DoNotEmbedDescriptors=1
+call restore.cmd -r %rid%
cd ..\linker
..\corebuild\Tools\dotnetcli\dotnet.exe publish -r %rid% -c netcore_Release
popd
diff --git a/tests/scripts/build_illink.sh b/tests/scripts/build_illink.sh
index 1bc7670e07..73bbd1a9fd 100755
--- a/tests/scripts/build_illink.sh
+++ b/tests/scripts/build_illink.sh
@@ -53,8 +53,7 @@ if [ ! -z "$clone" ]; then
fi
pushd linker/corebuild
-./restore.sh -RuntimeIdentifier=$rid
-export DoNotEmbedDescriptors=1
+./restore.sh -r $rid
cd ../linker
../corebuild/Tools/dotnetcli/dotnet publish -r $rid -c netcore_Release
popd