Hi @t.weigt - and sorry for the delayed reply, I just returned from vacation this week. Also thanks for summing up your environment!
I have in fact dabbled in this some seven years ago and can give you some pointers - but before doing so I need to point out that this is not an officially supported scenario (and definitely the people behind de.support@stemmer-imaging.com will not be able to help you with), so we’re basically on our own here.
There are (probably not surprising) some limitations when mixing 32 and 64 bit installations beyond this not being an officially supported setup:
- Most notably, it is unlikely that the GenICam.vin (and the GenICam infrastructure) will work without issues in a 32-bit application with GigE Vision or USB3 Vision cameras. I only expect the 64-bit driver to work as it should.
- There are two tools - Color and Manto - that are only available for the 32 bit Windows platform; but as you are using the CVB++ API you will most likely not be using those anyway.
- Patch installers will not be able to update your fileset easily - whenever you want to update what you are about to create you’ll need to do that manually for the Win32 side.
- The start menu entries created by the installers will of course only be pointing to either 32 or 64 bit binaries; when following the hints further down, they will point to the 64 bit binaries.
Step-by-Step Instruction
1. Obtain Common Vision Blox Win32 Fileset
First of all, you’ll need the file set of the Win32 version of Common Vision Blox. For this it is necessary to run the Win32 Runtime Setup (“CommonVisionBlox xx.xx.xxx (Win32).exe”). It does not matter much into which directory Common Vision Blox gets installed at this stage, but things are simpler when doing it e. g. to C:\CVB\Win32 or something similar.
After the installation has finished, the following files need to be copied to a temporary directory:
- The complete content of the directory %CVB%, including all sub-directories (keeping the directory structure intact!)
- From C:\windows\SysWOW64 the files borlndmm.dll and vcl60.bpl.
Also export the entire registry key (including sub keys) HKEY_LOCAL_MACHINE\Software\Wow6432Node\Common Vision Blox
into a file. This file can be re-imported without any changes later.
Once all copies have been gathered, the Win32 version of the Installation will not be needed any longer and should be uninstalled.
2. Installation of Common Vision Blox x64
Now the x64 version of the Common Vision Blox setup (“CommonVisionBlox xx.xx.xxx (x64).exe”) can be executed on the target system. The destination directory may be freely chosen - I recommend using something along the lines of C:\CVB\x64.
3. Add the Win32 File Set
Now the file set that has been copied into a temporary folder earlier in step 1 should be copied into a suitable target directory like C:\CVB\Win32. Those files that have been copied from C:\Windows\System32 or C:\Windows\SysWOW64 (borlndmm.dll and vcl60.bpl) need to be copied to C:\Windows\SysWOW64 again.
4. Adapt Environment Variables
The following environment variables should now be adapted or added:
GENICAM_GENTL32_PATH
has to be added. It should point to the sub-directory “GenICam\bin\win32_i86\TLIs” of the Win32 file set (e. g. C:\CVB\Win32\GenICam\bin\win32_i86\TLIs).
- A reference to the base folder of the Win32 file set must be added to the
PATH
variable.
5. Modify Registry
At this point, the registry only contains those entries that have been added by the x64 installer. Some components, however rely on the correct entries for the Win32 part to work correctly. The easiest way to just reimport the file exported in step 1.
Final Remarks
When doing the installation like described above, the two different installations of
will end up in C:\CVB\Win32 and C:\CVB\x64. Both directories will have been put into the PATH
variable, so a binary using
will find the respective dependencies easily (and the Windows DLL loader will automatically select the correct DLL). What’s more difficult are the dynamically loaded (i. e. via LoadLibrary
) DLLs like e. g. GenICam.vin because LoadLibrary
will actually load a DLL even if the architecture does not match. So it is possible to open the “wrong” GenICam.vin (i. e. the 32 bit one in a 64 bit application and vice versa) - but I expect a nasty crash to happen shortly after…
Special attention should be paid to the CVB
environment variable: As a matter of principle this can only point to one of the two architectures (and if you followed the description this will be C:\CVB\x64). Therefore, if you access anything through %CVB%
(or $(CVB)
in Visual Studio…) you should always make sure that what you do is actually platform agnostic (for example: Including the CVB++ headers through $(CVB)
or %CVB%
won’t do harm, because they are identical for 32 and 64 bit, but linking the CV*.lib
files will tie things down to the x64 platform because %CVB%\Lib\C
contains only the 64 bit *.lib files…