mirror of
https://github.com/ankitects/anki.git
synced 2025-09-23 16:26:40 -04:00
mention missing libs in linux.md
This commit is contained in:
parent
b85ee30c70
commit
1e8b02592d
1 changed files with 15 additions and 0 deletions
|
@ -93,6 +93,21 @@ If you or your distro has made ccache the standard compiler, you will need to
|
||||||
set CC and CXX to point directly to gcc/g++ or clang/clang++ prior to building
|
set CC and CXX to point directly to gcc/g++ or clang/clang++ prior to building
|
||||||
Anki.
|
Anki.
|
||||||
|
|
||||||
|
## Missing Libraries
|
||||||
|
|
||||||
|
If you get errors during startup, try starting with
|
||||||
|
|
||||||
|
QT_DEBUG_PLUGINS=1 ./run
|
||||||
|
|
||||||
|
It will likely complain about missing libraries, which you can install with
|
||||||
|
your package manager. Some of the libraries that might be required on Debian
|
||||||
|
for example:
|
||||||
|
|
||||||
|
```
|
||||||
|
sudo apt install libxcb-icccm4 libxcb-image0 libxcb-keysyms1 \
|
||||||
|
libxcb-randr0 libxcb-render-util0
|
||||||
|
```
|
||||||
|
|
||||||
## Optimized builds
|
## Optimized builds
|
||||||
|
|
||||||
The `./run` command will create a non-optimized build by default. This is faster
|
The `./run` command will create a non-optimized build by default. This is faster
|
||||||
|
|
Loading…
Reference in a new issue