Skip to content

Commit

Permalink
README and site update
Browse files Browse the repository at this point in the history
  • Loading branch information
attipaci committed Oct 23, 2024
1 parent 71fa7c4 commit 0b79a74
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`).

Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 0b79a74

Please sign in to comment.