diff options
author | William Pitcock <nenolod@dereferenced.org> | 2018-03-16 18:54:30 +0000 |
---|---|---|
committer | William Pitcock <nenolod@dereferenced.org> | 2018-03-16 18:54:30 +0000 |
commit | 4b2a0e3ac4f76c8448d6e9a850af4ffca4d911b8 (patch) | |
tree | 5588b60eef01194d303d9f5c9a4424abc2f3e9b4 | |
parent | 808b3baf378a5e7d88ce8bfb734ce8e133d82a41 (diff) | |
download | gcompat-4b2a0e3ac4f76c8448d6e9a850af4ffca4d911b8.tar.gz gcompat-4b2a0e3ac4f76c8448d6e9a850af4ffca4d911b8.tar.bz2 gcompat-4b2a0e3ac4f76c8448d6e9a850af4ffca4d911b8.tar.xz gcompat-4b2a0e3ac4f76c8448d6e9a850af4ffca4d911b8.zip |
README: document WITH_LIBUCONTEXT variable
-rw-r--r-- | README.md | 13 |
1 files changed, 7 insertions, 6 deletions
@@ -12,12 +12,13 @@ of glibc programs to work in the same way as native musl programs. In order to build correctly, the gcompat build system requires a few details about the host environment, both from the musl end, as well as the glibc end. These are: -| Variable | Description | -|-------------------|---------------------------------------------------------------------------------------------------| -| `LINKER_PATH` | The location of the musl ELF interpreter. | -| `LOADER_NAME` | The name of the glibc ELF interpreter that would be appropriate for your architecture. | -| `LIBGCOMPAT_PATH` | *optional* The location to install the libgcompat.so library to. Usually `/lib/libgcompat.so.0`. | -| `LOADER_PATH` | *optional* The location to install the loader to. Usually `/lib/${LOADER_NAME}`. | +| Variable | Description | +|--------------------|---------------------------------------------------------------------------------------------------| +| `LINKER_PATH` | The location of the musl ELF interpreter. | +| `LOADER_NAME` | The name of the glibc ELF interpreter that would be appropriate for your architecture. | +| `LIBGCOMPAT_PATH` | *optional* The location to install the libgcompat.so library to. Usually `/lib/libgcompat.so.0`. | +| `LOADER_PATH` | *optional* The location to install the loader to. Usually `/lib/${LOADER_NAME}`. | +| `WITH_LIBUCONTEXT` | *optional* Whether or not to build against `libucontext`. | For example on x86_64 musl with x86_64 glibc compatibility, you would want to do: |