From 0b79a747435c4b6b29a8b787817e0bddab34db4d Mon Sep 17 00:00:00 2001 From: Attila Kovacs Date: Wed, 23 Oct 2024 09:38:47 -0400 Subject: [PATCH] README and site update --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 249293d..44356eb 100644 --- a/README.md +++ b/README.md @@ -96,8 +96,8 @@ You can configure the build, either by editing `config.mk` or else by defining t prior to invoking `make`. The following build variables can be configured: - `XCHANGE`: the root of the location where the [Smithsonian/xchange](https://github.com/Smithsonian/xchange) library - is installed. It expects to find `xchange.h` under `$(XCHANGE)/include` and `libxchange.so` under `$(XCHANGE)/lib` - or else in the default `LD_LIBRARY_PATH`. + is installed. It expects to find `xchange.h` under `$(XCHANGE)/include` and `libxchange.so` / `libredisx.a` under + `$(XCHANGE)/lib` or else in the default `LD_LIBRARY_PATH`. - `CC`: The C compiler to use (default: `gcc`). @@ -125,7 +125,7 @@ desired `make` target(s). (You can use `make help` to get a summary of the avail ## Linking your application against RedisX Provided you have installed the shared (`libredisx.so` and `libxchange.so`) or static (`libredisx.a` and -`libxchange.so`) libraries in a location that is in your `LD_LIBRARY_PATH` (e.g. in `/usr/lib` or `/usr/local/lib`) +`libxchange.a`) libraries in a location that is in your `LD_LIBRARY_PATH` (e.g. in `/usr/lib` or `/usr/local/lib`) you can simply link your program using the `-lredisx -lxchange` flags. Your `Makefile` may look like: ```make