summaryrefslogtreecommitdiff
path: root/Documentation/building/unix-test-instructions.md
diff options
context:
space:
mode:
Diffstat (limited to 'Documentation/building/unix-test-instructions.md')
-rw-r--r--Documentation/building/unix-test-instructions.md40
1 files changed, 0 insertions, 40 deletions
diff --git a/Documentation/building/unix-test-instructions.md b/Documentation/building/unix-test-instructions.md
index eb4f325bf9..7b7cc666e7 100644
--- a/Documentation/building/unix-test-instructions.md
+++ b/Documentation/building/unix-test-instructions.md
@@ -30,46 +30,6 @@ During development there are many instances where building an individual test is
>`/path/to/coreclr/.dotnet/dotnet msbuild tests/src/path-to-proj-file /p:__BuildOS=<BuildOS> /p:__BuildType=<BuildType>`
-## Aarch64/armhf multi-arch
-
-For machines that have aarch64/armhf support, all the armhf packages will need to also be downloaded. Please note you will need to enable multiplatform support as well. Check with your distro provider or kernel options to see if this is supported. For simplicity, these instructions relate to aarch64 ubuntu enabling arm32 (hf) coreclr runs.
-
-Please make sure your device is running a 64-bit aarch64 kernel.
-
-```
-# Example output
-
-[ubuntu:~]: uname -a
-Linux tegra-ubuntu 4.4.38-tegra #1 SMP PREEMPT Thu Jul 20 00:41:06 PDT 2017 aarch64 aarch64 aarch64 GNU/Linux
-
-```
-
-```
-# Enable armhf multiplatform support
-[ubuntu:~]: sudo dpkg --add-architecture armhf
-[ubuntu:~]: sudo apt-get update
-
-[ubuntu:~]: sudo apt-get install libstdc++6:armhf
-````
-
-At this point, you should be able to run a 32-bit `corerun`. You can verify this by downloading and running a recently built arm32 coreclr.
-
-```
-[ubuntu:~]: wget https://ci.dot.net/job/dotnet_coreclr/job/master/job/armlb_cross_checked_ubuntu/lastSuccessfulBuild/artifact/*zip*/archive.zip --no-check-certificate
-[ubuntu:~]: unzip archive.zip
-[ubuntu:~]: chmod +x && ./archive/bin/Product/Linux.arm.Checked/corerun
-Execute the specified managed assembly with the passed in arguments
-
-Options:
--c, --clr-path path to the libcoreclr.so and the managed CLR assemblies
-```
-
-Now download the coreclr armhf dependencies.
-
-```
-sudo apt-get install libunwind8:armhf libunwind8-dev:armhf libicu-dev:armhf liblttng-ust-dev:armhf libcurl4-openssl-dev:armhf libicu-dev:armhf libssl-dev libkrb5-dev:armhf
-```
-
## Running Tests
The following instructions assume that on the Unix machine: