diff --git a/README.md b/README.md index a30ee810..32b185ed 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,10 @@ On Mac, QT5 apps fail to build on QtCreator if you have the libjpeg lib installe sudo mv /usr/local/lib/libjpeg.dylib /usr/local/lib/libjpeg.dylib.not-found -If you encounter the `Project ERROR: r_core development package not found` try this command instead `PKG_CONFIG_PATH=$HOME/bin/prefix/radare2/lib/pkgconfig qmake` +If you encounter the `Project ERROR: r_core development package not found` try one of this commands instead: + +- `PKG_CONFIG_PATH=$HOME/bin/prefix/radare2/lib/pkgconfig qmake` +- `PKG_CONFIG_PATH=$HOME/cutter/radare2/pkgcfg qmake` (for modern version and if radare2 was installed like the submodule) ## Platforms diff --git a/docs/Common-errors.md b/docs/Common-errors.md index fcdfb109..ce924e6f 100644 --- a/docs/Common-errors.md +++ b/docs/Common-errors.md @@ -1,7 +1,7 @@ # Common errors ## Linux / OsX -Please make sure you have the appropriate QT version: [https://www.qt.io/qt5-6/](https://www.qt.io/qt5-6/) +Please make sure you have the appropriate QT version: [https://www.qt.io/qt5-9/](https://www.qt.io/qt5-9/) ### Compilation error > r_core development package not found @@ -13,7 +13,9 @@ To fix this, append: to the `PATH` variable within the *Build Environment* section in Qt Creator. See the screenshot below should you encounter any problems. -![PATH variable settings](https://d0vine.github.io/images/iaito_settings.png) +![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/` ### 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: @@ -21,4 +23,4 @@ Some people report that they have keyboard issues. Usually it is because the Xor ## Windows -See [Compiling on Windows](https://github.com/hteso/iaito/wiki/Compiling-on-Windows). +See [Compiling on Windows](https://github.com/radareorg/cutter/blob/master/docs/Compiling-on-Windows.md). diff --git a/docs/cutter_path_settings.png b/docs/cutter_path_settings.png new file mode 100644 index 00000000..c84f0b92 Binary files /dev/null and b/docs/cutter_path_settings.png differ