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)
This commit is contained in:
Timothy McCallum 2017-05-01 08:53:53 +10:00 committed by GitHub
parent 30914a930f
commit 292c7faea4

View File

@ -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