Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Vorlicek <janvorli@microsoft.com>2016-12-01 05:26:15 +0300
committerJan Vorlicek <janvorli@microsoft.com>2016-12-01 05:32:40 +0300
commitc6571c6eb7b99afec7d69cd5f52fb3c5058a2e3c (patch)
tree2c80417e8d707248d040b7edd5c72dfae3812371 /Documentation
parenta48e1a6702d3678e7de02d36bd689b0c96fddeaa (diff)
Use LLVM libunwind for stack unwinding on Unix
This change replaces external libunwind usage on Unix by a copy of the LLVM libunwind. It also modifies libunwind to support reporting register location and implements the unw_get_save_loc API to get this location. For now, only memory locations are supported (register locations are not).
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/prerequisites-for-building.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/prerequisites-for-building.md b/Documentation/prerequisites-for-building.md
index 7d4cd8154..a22000607 100644
--- a/Documentation/prerequisites-for-building.md
+++ b/Documentation/prerequisites-for-building.md
@@ -13,7 +13,7 @@ PowerShell also needs to be available from the PATH environment variable (it's t
Install basic dependency packages:
```
-sudo apt-get install cmake llvm-3.5 clang-3.5 lldb-3.6 lldb-3.6-dev libunwind8 libunwind8-dev liblttng-ust liblttng-ust-dev uuid uuid-dev
+sudo apt-get install cmake llvm-3.5 clang-3.5 lldb-3.6 lldb-3.6-dev liblttng-ust liblttng-ust-dev uuid uuid-dev
```
# Mac OSX (10.10+)