From f02a57cdfc25280959c6cc7e1f91397b919ba101 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9ophile=20Bastian?= Date: Fri, 17 Aug 2018 21:13:54 +0200 Subject: [PATCH] Add project-specific README --- README.md | 18 ++++++++++++++++++ README => README.original | 0 2 files changed, 18 insertions(+) create mode 100644 README.md rename README => README.original (100%) diff --git a/README.md b/README.md new file mode 100644 index 00000000..6d17f059 --- /dev/null +++ b/README.md @@ -0,0 +1,18 @@ +# libunwind, `eh_elf` flavour + +This repository is a fork of `libunwind`. The original `README` file is +preserved as `README.original`. + +## Compiling + +```bash +./autogen.sh +./configure --enable-maintainer-mode --enable-debug +make -j +``` + +It is also advised to install this libunwind version to some place of your +system, for instance `$HOME/local/libunwind-eh_elf`. For this purpose, pass an +additional `--prefix=~/local/libunwind-eh_elf` to `./configure`, and after +building the library, run `make install` (possibly with root permissions if you +installed it to `/usr/local/...`). diff --git a/README b/README.original similarity index 100% rename from README rename to README.original