From 277f4807fd46edc73dd7e19bc53c0d944dba6a84 Mon Sep 17 00:00:00 2001 From: Steve Lee Date: Mon, 2 Oct 2017 09:09:59 -0700 Subject: [PATCH 1/2] added instructions to install libunwind8 --- demos/Raspberry-Pi/README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/demos/Raspberry-Pi/README.md b/demos/Raspberry-Pi/README.md index 48efc3ee639..4fbad80a539 100644 --- a/demos/Raspberry-Pi/README.md +++ b/demos/Raspberry-Pi/README.md @@ -76,3 +76,11 @@ cp shared/Microsoft.NetCore.App/2.1.0-preview1-25719-04/* ~/powershell ``` Note that until arm32 is [fully supported by CoreCLR](https://github.com/dotnet/coreclr/issues/3977), it's not supported by PowerShell Core. + +If you get an error complaining about `libunwind.so.8` not being found, you'll need to install it as it's required by CoreCLR + +```bash +sudo apt install libunwind8 +``` + +Have fun! From e3fd568ed1c935d8a0e82f3654de201ae42fac33 Mon Sep 17 00:00:00 2001 From: Steve Lee Date: Mon, 2 Oct 2017 14:31:11 -0700 Subject: [PATCH 2/2] added missing period --- demos/Raspberry-Pi/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demos/Raspberry-Pi/README.md b/demos/Raspberry-Pi/README.md index 4fbad80a539..0e528f1dfa1 100644 --- a/demos/Raspberry-Pi/README.md +++ b/demos/Raspberry-Pi/README.md @@ -77,7 +77,7 @@ cp shared/Microsoft.NetCore.App/2.1.0-preview1-25719-04/* ~/powershell Note that until arm32 is [fully supported by CoreCLR](https://github.com/dotnet/coreclr/issues/3977), it's not supported by PowerShell Core. -If you get an error complaining about `libunwind.so.8` not being found, you'll need to install it as it's required by CoreCLR +If you get an error complaining about `libunwind.so.8` not being found, you'll need to install it as it's required by CoreCLR. ```bash sudo apt install libunwind8