Results 1 to 20 of 33

Thread: question about dlls..

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Join Date
    Jan 2011
    Posts
    128
    Thanks
    2

    Default Re: question about dlls..

    Quote Originally Posted by Zlatomir View Post
    The 1073741511 exit code means wrong dlls, did you deployed your application with the correct dlls, also check that you don't have some "older" invalid paths or check your "windows\system32" dir and see if there is any Qt dll's.
    Need to fix this ASAP(I need to build in release to make file like 20 mb instead of 200 as it's now.)
    In release folder it shows this:http://min.us/lmHCMO

    Thank you.

  2. #2
    Join Date
    Mar 2009
    Location
    Brisbane, Australia
    Posts
    7,729
    Qt products
    Qt4 Qt5
    Platforms
    Unix/X11 Windows
    Thanks
    13
    Thanked 1,610 Times in 1,537 Posts
    Wiki edits
    17

    Default Re: question about dlls..

    I assume you are using the Qt SDK with its included MingW compiler. Here are the points form the above discussion summarised:
    • Deploy the release DLLs (e.g. QtCore4.dll), not the debug DLLs (e.g. QtCored4.dll). This is the most likely reason that your deployment is ridiculously large. A full set of release libraries, which you are unlikely to need all of, is about 40MB.
    • Deploy the DLLs that have been built with the same compiler as your executable. This means you should deploy the DLLs found in
      • \Qt\2010.02.1\qt\bin,
      • not the ones in \Qt\2010.02.1\bin
      (adjust the path as required). This is the most likely cause of your latest problem.
    • Don't forget to deploy any plugin that your application requires. This is the most likely cause of the next problem you are likely to strike.

    The issue of what to deploy and where to put it has been done to death in these forums.

Similar Threads

  1. Where are .dlls searched for?
    By Cruz in forum Qt Programming
    Replies: 2
    Last Post: 15th October 2010, 14:40
  2. Linking to VB6 dlls
    By drmath in forum Qt Programming
    Replies: 0
    Last Post: 17th September 2010, 16:00
  3. Replies: 2
    Last Post: 22nd February 2007, 08:08
  4. Quick question regarding abstract classes and DLLs
    By durbrak in forum Qt Programming
    Replies: 1
    Last Post: 8th February 2007, 21:32
  5. Qt and dlls ?
    By probine in forum Qt Programming
    Replies: 4
    Last Post: 15th December 2006, 14:12

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Qt is a trademark of The Qt Company.