cutter/docs/Common-errors.md

27 lines
1.2 KiB
Markdown
Raw Normal View History

2017-09-27 21:40:54 +00:00
# Common errors
2018-03-02 11:58:19 +00:00
## Linux / OsX
Please make sure you have the appropriate QT version: [https://www.qt.io/qt5-9/](https://www.qt.io/qt5-9/)
2017-09-27 21:40:54 +00:00
2018-03-02 11:58:19 +00:00
### Compilation error
2017-09-27 21:40:54 +00:00
> r_core development package not found
If you installed radare2 and still encounter this error, could be your `PATH` environment variable is set improperly (doesn't contain `/usr/local/bin`). That can be, for example, due to `Qt Creator.app` being copied over to `/Applications`.
To fix this, append:
> :/usr/local/bin
to the `PATH` variable within the *Build Environment* section in Qt Creator. See the screenshot below should you encounter any problems.
![PATH variable settings](cutter_path_settings.png)
Or radare2 libs could be installed to `/usr/lib/pkgconfig/`, so you can add variable `PKG_CONFIG_PATH` with value `/usr/lib/pkgconfig/`
2017-09-27 21:40:54 +00:00
2018-03-02 11:58:19 +00:00
### Keyboard layout issue
Some people report that they have keyboard issues. Usually it is because the Xorg layout is wrong. You can check it with:
```setxkbmap -query``` Most of the time using ```setxkbmap us``` solves the issue, but it might not be enough and require some more advanced Xorg configuration.
2017-09-27 21:40:54 +00:00
## Windows
See [Compiling on Windows](https://github.com/radareorg/cutter/blob/master/docs/Compiling-on-Windows.md).