From 3f86438c886eeb6003b4479d23fa18d1e7c88140 Mon Sep 17 00:00:00 2001 From: "Juan M. Cruz-Martinez" Date: Mon, 22 Jan 2024 15:17:08 +0100 Subject: [PATCH] Update README.md with reference to DYLD for macos --- capi/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/capi/README.md b/capi/README.md index df96a8a..4095995 100644 --- a/capi/README.md +++ b/capi/README.md @@ -21,10 +21,11 @@ pkg-config pdfflow --cflags pkg-config pdfflow --libs ``` -If you installed to a non-standard location, you need to set up the `PKG_CONFIG_PATH` and `LD_LIBRARY_PATH`, e.g.: +If you installed to a non-standard location, you need to set up the `PKG_CONFIG_PATH` and `LD_LIBRARY_PATH`, e.g., for a `VIRTUAL_ENV`: ```bash export PKG_CONFIG_PATH=${VIRTUAL_ENV}/lib/pkgconfig/:${PKG_CONFIG_PATH}: export LD_LIBRARY_PATH=${VIRTUAL_ENV}/lib/:${LD_LIBRARY_PATH}: +export DYLD_LIBRARY_PATH=${VIRTUAL_ENV}/lib:${DYLD_LIBRARY_PATH}Ñ ```