Posted
about 12 years
ago
by
[email protected]
(Neil Griffiths)
So Dependency Walker finds issues with dependencies and then you go on to claim that it's not a problem with dependencies? Unfortunately the fact that it works with VS2010 just implies that you have all of the VS2010 dependencies installed. The only dependency warning I know is safe for you to ignore is
|
Posted
about 12 years
ago
by
[email protected]
(Chris Manning)
No complaints on registering from regsvr32. I used Dependency Walker and got complaints about SHCORE.dll, SHLWAPI.dll, EXT-MS-WIN-ADVAPI32-PSM-APP-L1 -1-0.dll, and IEFRAME.dll. Not sure what could be causing all of these issues, as I'm only compiling the test projects as they are created with the latest stable from
|
Posted
about 12 years
ago
by
[email protected]
(Richard Bateman)
From the error message, it's either not building the output file or the dmg script is trying to use the wrong filename. Richard
|
Posted
about 12 years
ago
by
[email protected]
(Gaurav Raj)
Thanks...I'll try checking your suggested methods and let you know what happens. -- Gaurav Raj
|
Posted
about 12 years
ago
by
[email protected]
The prep script generated DMG installer build fails on me: PhaseScriptExecution "CMake PostBuild Rules" /Users/macbookpro/Documents/sr c/Plugin/fbbuild/projects/Firs tbeatUploaderPlugin/FireBreath .build/Debug/FirstbeatUploader Plugin.build/Script-7CC333E8B5 4C435A81548B3F.sh cd /Users/macbookpro/Documents/sr c/Plugin/firebreath
|
Posted
about 12 years
ago
by
[email protected]
(goutami kumbhar)
Hi, Sorry for my behaviour. As per your suggestion I will break down the problem and try to work out for specific things in parts.If I have the query related to the firebreath then I will post the specific question for it. Thanks & Regards, GoutamiKumbhar
|
Posted
about 12 years
ago
by
[email protected]
(Richard Bateman)
Whenever you have a deadlock (a lock that occurs on a mutex) and it's a recursive mutex you know that another thread is locked on that same mutex. Look at the other threads and see which one it is, that'll give you a better idea of what is going on.
|
Posted
about 12 years
ago
by
[email protected]
(Neil Griffiths)
It means that m_zoneMutex is locked by another thread. What is going on in the other threads?
|
Posted
about 12 years
ago
by
[email protected]
(John Tan)
Another thing, this apiPtr, is this object created within your thread or is it from your mainthread? if it is from main thread, you must make sure you are getting the correct instance from the main thread.
|
Posted
about 12 years
ago
by
[email protected]
(John Tan)
Another thing to add.... Objects of native c++ and managed c++ are not transferable. Primitive variable is ok but not objects. They are only similar in syntax.
|