From 292c7faea4a339b69c3dfaeedbc6b7bd8d3e22ca Mon Sep 17 00:00:00 2001 From: Timothy McCallum Date: Mon, 1 May 2017 08:53:53 +1000 Subject: [PATCH] Adding ldconfig command at the end of Ubunbtu doc Need to run ldconf so that the shared libraries are found when running cpp executable (your xlnt program) --- docs/introduction/Installation.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/introduction/Installation.md b/docs/introduction/Installation.md index 637b59fb..03754718 100644 --- a/docs/introduction/Installation.md +++ b/docs/introduction/Installation.md @@ -70,10 +70,6 @@ cmake . make -j 2 sudo make install ``` -The following step will map the shared library names to the location of the corresponding shared library files -``` -sudo ldconfig -``` The following steps will intall xlnt Download the zip file from the xlnt repository https://github.com/tfussell/xlnt/archive/master.zip @@ -85,6 +81,10 @@ cmake . make -j 2 sudo make install ``` +The following step will map the shared library names to the location of the corresponding shared library files +``` +sudo ldconfig +``` xlnt will now be ready to use on your Ubuntu instance. ## Compiling from Source