Problem with OCL installation in Windows

Hello,

I have succesfully installed rtt on a Windows 7 using CMake 2.8.4 and Microsoft Visual Studio 2008, following the instructions given in the Wiki: http://www.orocos.org/wiki/rtt/rtt-ms-windows/compiling-rtt-1100-windows-native-win32-api

I have also been able to generate the MVS files for OCL (most of it, no the tests for example), and I have built and installed them. But when I try to run deployer.exe or helloword.exe I get the following error:

Runtime Error!

R6034 An application has made an attempt to load the C runtime library incorrectly.

I've read this R6034 is related to the application neeeding to be generated with a manifest file.

Any idea on how to solve this would be really welcomed.

Thank you very much in advance

Problem with OCL installation in Windows

On Wednesday 11 May 2011 17:32:00 chcorbato [..] ... wrote:
> Hello,
>
> I have succesfully installed rtt on a Windows 7 using CMake 2.8.4 and
> Microsoft Visual Studio 2008, following the instructions given in the
> Wiki:
> http://www.orocos.org/wiki/rtt/rtt-ms-windows/compiling-rtt-1100-windows-n
> ative-win32-api
>
> I have also been able to generate the MVS files for OCL (most of it, no the
> tests for example), and I have built and installed them. But when I try to
> run deployer.exe or helloword.exe I get the following error:
>
> Runtime Error!
>
> R6034
> An application has made an attempt to load the C runtime library
> incorrectly.
>
> I've read this R6034 is related to the application neeeding to be generated
> with a manifest file.
>
> Any idea on how to solve this would be really welcomed.
>
> Thank you very much in advance

Try to run the program in the 'Visual Studio Command Prompt' and set your PATH
correctly. I'm no expert either in setting up manifest files etc.

Peter

Problem with OCL installation in Windows

It was actually a problem of some dlls missing, but not because of the PATH but because some of the MVS projects were built in debug, so the release dlls were not built. I rebuilt everything on release and now it seems to work.

Thank you very much for your support Peter

Problem with OCL installation in Windows

I have the same error when I run "deployer.exe". At beginning, when I run "deployer.exe", Windows warns me there are some missing DLL. After I copied all missing .dll in right directory, Windows shows me the R6034 error. I don't know very well which .dll I need to run correctly "deployer.exe". Any ideas?

Thank you very much Giulio.

Problem with OCL installation in Windows

2011/7/29 <giulio [dot] sporti [..] ...>

> I have the same error when I run "deployer.exe".
> At beginning, when I run "deployer.exe", Windows warns me there are some
> missing DLL. After I copied all missing .dll in right directory, Windows
> shows me the R6034 error. I don't know very well which .dll I need to run
> correctly "deployer.exe". Any ideas?
>
>
The easiest way to run deployer on win32 is to install Orocos using the
'INSTALL' target. Then, you have to put all directories containing DLLs in
your path, e.g.:

'C:\Program Files\orocos\bin'
'C:\Program Files\orocos\lib\orocos\win32\plugins'
'C:\Program Files\orocos\lib\orocos\win32\types'

Hope this helps,

Philippe

Problem with OCL installation in Windows

 > I have the same error when I run "deployer.exe".
 > At beginning, when I run "deployer.exe", Windows warns me there are some
 > missing DLL. After I copied all missing .dll in right directory, Windows
 > shows me the R6034 error. I don't know very well which .dll I need to run
 > correctly "deployer.exe". Any ideas?
 >
 >
 >The easiest way to run deployer on win32 is to install Orocos using the
 >'INSTALL' target. Then, you have to put all directories containing DLLs in
 >your path, e.g.:
 >
 >'C:\Program Files\orocos\bin'
 > 'C:\Program Files\orocos\lib\orocos\win32\plugins'
 > 'C:\Program Files\orocos\lib\orocos\win32\types'
 >
 >Hope this helps,
 >
 >Philippe
Thank you, but I think I have compiled in MS VS2008 using "ALL_BUILD" in Debug and Release mode. After I have used "INSTALL" in Debug and Release mode and the DLL have been gone in the same directory. So I think I have to compile only in Release or Debug mode. I have seen another post "Many oroblems while mixing build configurations on win32" and I try to follow that.

Thanks Giulio.