improve install docs more

This commit is contained in:
Carsten Haitzler 2022-06-04 15:04:10 +01:00
parent ed98a80834
commit 20f49053fc
1 changed files with 8 additions and 7 deletions

View File

@ -146,12 +146,12 @@ Meson is the build system used for this project. For more information
please see [mesonbuild.com](https://mesonbuild.com) please see [mesonbuild.com](https://mesonbuild.com)
You will need normal build tooling installed such as a compiler (gcc You will need normal build tooling installed such as a compiler (gcc
or clang for example), pkg-config, ninja, any relevant pakcage-dev or or clang for example), pkg-config, ninja, any relevant package-dev or
package-devel packages if your distribution splits out development package-devel packages if your distribution splits out development
headers etc. headers (e.g. libc6-dev) etc.
Depending on where dependencies (like efl), you might have to set your Depending on where dependencies (like efl) are installed, you might have to
`PKG_CONFIG_PATH` environment variable like: set your `PKG_CONFIG_PATH` environment variable like:
``` ```
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:/usr/lib/pkgconfig export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:/usr/lib/pkgconfig
``` ```
@ -162,13 +162,14 @@ to your library locations so you might have to have more like:
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:/usr/local/lib64/pkgconfig:/usr/local/lib/x86_64-linux-gnu/pkgconfig:/usr/lib/pkgconfig:/usr/lib64/pkgconfig:/usr/lib/x86_64-linux-gnu/pkgconfig export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:/usr/local/lib64/pkgconfig:/usr/local/lib/x86_64-linux-gnu/pkgconfig:/usr/lib/pkgconfig:/usr/lib64/pkgconfig:/usr/lib/x86_64-linux-gnu/pkgconfig
``` ```
You will need to enusre that the destination library direcytory (e.g. You will need to enusre that the destination library directory (e.g.
`/usr/local/lib` is in your /etc/ld.so.conf or /etc/ld.so.conf.d/ `/usr/local/lib` is in your /etc/ld.so.conf or /etc/ld.so.conf.d/
files and after insgtaling anything that installes libraries you files and after insgtaling anything that installes libraries you
re-run `ldconfig`. re-run `ldconfig`. Please see relevant documentation on ldconfig and
ld.so.conf for your distribution.
You might also want to add the destination bin dir to your environment You might also want to add the destination bin dir to your environment
variable PATH like: variable PATH (see documentation on your shell PATH variable) such as:
``` ```
export PATH=/usr/local/bin:/usr/bin:/bin export PATH=/usr/local/bin:/usr/bin:/bin
``` ```