summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorkasper3 <33230602+kasper3@users.noreply.github.com>2018-03-07 23:03:35 +0200
committerJan Vorlicek <janvorli@microsoft.com>2018-03-07 22:03:35 +0100
commit3d9249cf39510d67d094b0d8883f55776498516d (patch)
tree8c34aee500c6f538fed5adb8009224df42e21aaa /Documentation
parent6e5e7bfba21db7f5ffd2122ce67a35f45b5e2a42 (diff)
downloadcoreclr-3d9249cf39510d67d094b0d8883f55776498516d.tar.gz
coreclr-3d9249cf39510d67d094b0d8883f55776498516d.tar.bz2
coreclr-3d9249cf39510d67d094b0d8883f55776498516d.zip
Remove libuuid from scripts and docs (#16805)
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/building/android.md1
-rw-r--r--Documentation/building/linux-instructions.md5
-rw-r--r--Documentation/building/unix-test-instructions.md2
3 files changed, 3 insertions, 5 deletions
diff --git a/Documentation/building/android.md b/Documentation/building/android.md
index cfb509dc2f..9f85ad7569 100644
--- a/Documentation/building/android.md
+++ b/Documentation/building/android.md
@@ -43,7 +43,6 @@ You can run the PAL tests on an Android device. To run the tests, you first copy
To copy the PAL tests over to an Android phone:
```
adb push bin/obj/Linux.arm64.Debug/src/pal/tests/palsuite/ /data/local/tmp/coreclr/src/pal/tests/palsuite
-adb push cross/android/toolchain/arm64/sysroot/usr/lib/libuuid.so.1 /data/local/tmp/coreclr/lib
adb push cross/android/toolchain/arm64/sysroot/usr/lib/libintl.so /data/local/tmp/coreclr/lib
adb push cross/android/toolchain/arm64/sysroot/usr/lib/libandroid-support.so /data/local/tmp/coreclr/lib/
adb push cross/android/toolchain/arm64/sysroot/usr/lib/libandroid-glob.so /data/local/tmp/coreclr/lib/
diff --git a/Documentation/building/linux-instructions.md b/Documentation/building/linux-instructions.md
index 7892772ffb..e3738cdcc3 100644
--- a/Documentation/building/linux-instructions.md
+++ b/Documentation/building/linux-instructions.md
@@ -29,7 +29,6 @@ Install the following packages for the toolchain:
- liblttng-ust-dev
- libcurl4-openssl-dev
- libssl-dev
-- uuid-dev
- libkrb5-dev
- libnuma-dev (optional, enables numa support)
@@ -43,7 +42,7 @@ For other version of Debian/Ubuntu, please visit http://apt.llvm.org/.
Then install the packages you need:
- ~$ sudo apt-get install cmake llvm-3.9 clang-3.9 lldb-3.9 liblldb-3.9-dev libunwind8 libunwind8-dev gettext libicu-dev liblttng-ust-dev libcurl4-openssl-dev libssl-dev uuid-dev libnuma-dev libkrb5-dev
+ ~$ sudo apt-get install cmake llvm-3.9 clang-3.9 lldb-3.9 liblldb-3.9-dev libunwind8 libunwind8-dev gettext libicu-dev liblttng-ust-dev libcurl4-openssl-dev libssl-dev libnuma-dev libkrb5-dev
The lldb 3.9 package needs a lib file symbolic link fixed:
@@ -54,7 +53,7 @@ You now have all the required components.
If you are using Fedora, then you will need to install the following packages:
- ~$ sudo dnf install llvm cmake clang lldb-devel libunwind-devel lttng-ust-devel libuuid-devel libicu-devel numactl-devel
+ ~$ sudo dnf install llvm cmake clang lldb-devel libunwind-devel lttng-ust-devel libicu-devel numactl-devel
Git Setup
---------
diff --git a/Documentation/building/unix-test-instructions.md b/Documentation/building/unix-test-instructions.md
index 19149160f2..bd15f173aa 100644
--- a/Documentation/building/unix-test-instructions.md
+++ b/Documentation/building/unix-test-instructions.md
@@ -82,7 +82,7 @@ Options:
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 uuid-dev:armhf libkrb5-dev:armhf
+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**