Changes between Version 3 and Version 4 of FAQ_runtime


Ignore:
Timestamp:
02/28/14 16:43:00 (10 years ago)
Author:
Marek Kurdej
Comment:

Separated errors

Legend:

Unmodified
Added
Removed
Modified
  • FAQ_runtime

    v3 v4  
    33= FAQ -- common run-time errors =
    44
    5 == Plugin loader failure ==
     5== Plugin loader failure 1 ==
     6=== Error message ===
     7{{{
     8#!div style="color: red"
     9000038 [2014-02-28 15:50:58.750509] <error> cannot load plugin '!PluginName.dll'. Plugin loader returned
     10error: The shared library was not found.
     11}}}
     12
     13=== Solution ===
     14
     15See [http://qt-project.org/doc/qt-5/deployment-plugins.html] for more information about development of Qt plugins.
     16You can set QT_DEBUG_PLUGINS environment variable to a non-zero value to see more information from plugin loader.
     17
     181. Check if filename '!PluginName.dll' is correct in your XML file.
     19X. Check if the correct version (release/debug) is used, see plugins ''postfix'' attribute in the XML.
     20X. Check if this file exists in the same directory as the executable.
     21
     22== Plugin loader failure 2 ==
    623=== Error message ===
    724{{{
     
    1633You can set QT_DEBUG_PLUGINS environment variable to a non-zero value to see more information from plugin loader.
    1734
    18 1. Check if filename '!PluginName.dll' is correct in your XML file.
    19 X. Check if the correct version (release/debug) is used, see plugins ''postfix'' attribute in the XML.
    20 X. Check if this file exists in the same directory as the executable.
    21 X. Check if this component CMakeLists.txt uses ```create_export``` and ```pacpus_plugin``` macros and that it adds generated files to the source file list, e.g.:
     351. Check if this component CMakeLists.txt uses ```create_export``` and ```pacpus_plugin``` macros and that it adds generated files to the source file list, e.g.:
    2236{{{
    2337create_export(EXPORT_HDR ${PROJECT_NAME})