From: shyam l. <shy...@gm...> - 2008-04-12 23:31:23
|
Hi list, I am new to qtada and I just wanna try the examples in the tutorial .. when i ran sample example t1 main.exe file i am seeing an error The procedure entry point _Z11qt_assert_xPKcSO_SO_i could not be located in the dynamic link library QtCore4.dll I am running win xp , I have Qt version 4.3.4 compiled and installed, Is there an incompatibility with the version of QT here ? thanks Shyam |
From: Vadim G. <vgo...@ro...> - 2008-04-13 05:45:21
|
shyam laximan wrote: > Hi list, > > I am new to qtada and I just wanna try the examples in the tutorial .. > when i ran sample example t1 main.exe file i am seeing an error > The procedure entry point _Z11qt_assert_xPKcSO_SO_i could not be located > in the dynamic link library QtCore4.dll > > > I am running win xp , I have Qt version 4.3.4 compiled and installed, > > Is there an incompatibility with the version of QT here ? > Which version of QtAda are you use? You may try this snapshot: http://downloads.sourceforge.net/qtada/qtada-gpl-1.0.3-20080408-2536-r1.exe It is build with Qt 4.3.4. |
From: shyam l. <shy...@gm...> - 2008-04-13 06:00:29
|
---------- Forwarded message ---------- From: shyam laximan <shy...@gm...> Date: Sun, Apr 13, 2008 at 1:58 AM Subject: Re: [QtAda-users] qtada To: Vadim Godunko <vgo...@ro...> hi, I was using ver 1.0.0 i have installed the snapshot 1.0.3 i am still getting the error. On Sun, Apr 13, 2008 at 1:45 AM, Vadim Godunko <vgo...@ro...> wrote: > shyam laximan wrote: > > > Hi list, > > > > I am new to qtada and I just wanna try the examples in the tutorial .. > > when i ran sample example t1 main.exe file i am seeing an error > > The procedure entry point _Z11qt_assert_xPKcSO_SO_i could not be located > > in the dynamic link library QtCore4.dll > > > > > > I am running win xp , I have Qt version 4.3.4 compiled and installed, > > > > Is there an incompatibility with the version of QT here ? > > > > Which version of QtAda are you use? > > You may try this snapshot: > > > http://downloads.sourceforge.net/qtada/qtada-gpl-1.0.3-20080408-2536-r1.exe > > It is build with Qt 4.3.4. > |
From: Vadim G. <vgo...@ro...> - 2008-04-13 06:27:38
|
shyam laximan wrote: > > i have installed the snapshot 1.0.3 i am still getting the error. > Do you use precompiled Qt version from Trolltech or compile it "by hand"? If you aware with MSYS environment you may compile and install QtAda from sources. You may found instructions in the INSTALL.Windows file. |
From: shyam l. <shy...@gm...> - 2008-04-13 14:23:57
|
I have compiled the source with visual c++ 2008. i dont know if there are issues with that.. i can try recompiling with mingw. On Sun, Apr 13, 2008 at 2:27 AM, Vadim Godunko <vgo...@ro...> wrote: > shyam laximan wrote: > > > > > i have installed the snapshot 1.0.3 i am still getting the error. > > > > Do you use precompiled Qt version from Trolltech or compile it "by > hand"? > > If you aware with MSYS environment you may compile and install QtAda from > sources. You may found instructions in the INSTALL.Windows file. > |
From: shyam l. <shy...@gm...> - 2008-04-14 02:30:06
|
I have copied Qtcore4.dll and QtGui4.dll in the same folder as main.exe and this works Question: is it possible to know which dll to deploy for specific projects thus avoid deploying unnecessary dll On Sun, Apr 13, 2008 at 10:23 AM, shyam laximan <shy...@gm...> wrote: > I have compiled the source with visual c++ 2008. i dont know if there are > issues with that.. i can try recompiling with mingw. > > > On Sun, Apr 13, 2008 at 2:27 AM, Vadim Godunko <vgo...@ro...> wrote: > > > shyam laximan wrote: > > > > > > > > i have installed the snapshot 1.0.3 i am still getting the error. > > > > > > Do you use precompiled Qt version from Trolltech or compile it "by > > hand"? > > > > If you aware with MSYS environment you may compile and install QtAda > > from sources. You may found instructions in the INSTALL.Windows file. > > > > |
From: Vadim G. <vgo...@ro...> - 2008-04-14 07:08:21
|
shyam laximan wrote: > I have copied Qtcore4.dll and QtGui4.dll in the same folder as main.exe > and this works > Great! :-) > Question: is it possible to know which dll to deploy for specific > projects thus avoid deploying unnecessary dll > General information about deployment of the Qt application you may found here: http://doc.trolltech.com/4.3/deployment.html and MS Windows specific here: http://doc.trolltech.com/4.3/deployment-windows.html For QtAda you must deploy libqt4ada-core-0.dll (QtCore module bindings) and libqt4ada-gui-0.dll (QtGui module bindings); and optionally libqt4ada-sql.0.dll (QtSql module bindings), libqt4ada-uitools-0.dll (QtUiTools module bindings). |