Skip to content

Commit c5e5e3a

Browse files
committed
Update docs so LD_LIBRARY_PATH is defined
1 parent fec4a75 commit c5e5e3a

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ micromamba activate xeus-cpp
3838
You are now in a position to install xeus-cpp into this environment. You can do this by executing
3939

4040
```bash
41+
export LD_LIBRARY_PATH="$CONDA_PREFIX/lib/:$LD_LIBRARY_PATH"
4142
mkdir build
4243
cd build
4344
cmake -D CMAKE_BUILD_TYPE=Release -D CMAKE_PREFIX_PATH=$CONDA_PREFIX -D CMAKE_INSTALL_PREFIX=$CONDA_PREFIX -D CMAKE_INSTALL_LIBDIR=lib ..

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ micromamba install jupyterlab -c conda-forge
5959
```
6060
Now you can compile the kernel from the source by executing (replace `$CONDA_PREFIX` with a custom installation prefix if need be)
6161
```bash
62+
export LD_LIBRARY_PATH="$CONDA_PREFIX/lib/:$LD_LIBRARY_PATH"
6263
mkdir build
6364
cd build
6465
cmake .. -D CMAKE_PREFIX_PATH=$CONDA_PREFIX -D CMAKE_INSTALL_PREFIX=$CONDA_PREFIX -D CMAKE_INSTALL_LIBDIR=lib

docs/source/InstallationAndUsage.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ with a custom installation prefix if need be)
3030

3131
.. code-block:: bash
3232
33+
export LD_LIBRARY_PATH="$CONDA_PREFIX/lib/:$LD_LIBRARY_PATH"
3334
mkdir build && cd build
3435
cmake .. -D CMAKE_PREFIX_PATH=$CONDA_PREFIX -D CMAKE_INSTALL_PREFIX=$CONDA_PREFIX
3536
-D CMAKE_INSTALL_LIBDIR=lib

0 commit comments

Comments
 (0)