Changes between Version 5 and Version 6 of FAQ_runtime
- Timestamp:
- Feb 28, 2014, 4:51:37 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FAQ_runtime
v5 v6 44 44 }}} 45 45 X. 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. 46 X. (Windows) Check if the .dll file exports any symbols (using e.g. [[UsefulTools|DependencyWalker]]). 46 X. (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 47 X. Check if both the application and the plugin have been built in the same version (release/debug). 48 48 X. ... TO BE FOUND