Changes between Version 6 and Version 7 of FAQ_runtime


Ignore:
Timestamp:
02/28/14 17:10:07 (10 years ago)
Author:
Marek Kurdej
Comment:

Dependencies version

Legend:

Unmodified
Added
Removed
Modified
  • FAQ_runtime

    v6 v7  
    4545X. Check for the missing DLL's dependencies, other DLLs can be missing (verify it using e.g. [[UsefulTools|DependencyWalker]]). (Windows) Copy DLLs to the application's folder or add their folder to PATH. (Unix) Make them visible to the linker.
    4646X. (Windows) Check if the .dll file exports any symbols (using e.g. [[UsefulTools|DependencyWalker]]). At least ```qt_plugin_instance``` and ```qt_plugin_query_metadata``` should be visible exported symbols.
    47 X. Check if both the application and the plugin have been built in the same version (release/debug).
     47X. Check if both the application, the plugin and their dependencies have been built in the same version: release/debug.
     48X. Check if both the application, the plugin and their dependencies have been built using the same compiler version. (Windows) Look for dependent DLLs like ```MSVCP110.dll```, check that the version, here 11.0, corresponds with your compiler.
    4849X. ... TO BE FOUND