[OpenCL-devel] Windows 2000 Port
Brought to you by:
randombit
|
From: Hany G. <Han...@In...> - 2002-04-11 20:52:27
|
Hello,
I finally had a few cycles and started porting OpenCL to Windows 2000. I
am using Visual C++ V6.0 SP5. This compiler has a number of rather annoying
"features". Some of these are well known (listed already on the OpenCL home
page). They include the inability to specify initialized static const
members. These were fixed easily enough with enums.
Throughout the code, I have wrapped my changes as follows:
#ifdef OPENCL_WIN
new modified code
#else
existing code
#endif
I have only 7 errors to go!!!
I have hit a roadblock however. Inexplicably, SecureVector<byte> seems to
kill VC++. I have no idea why. I tried commenting out most of the code and
it still fails. Any thoughts, idea, etc. would be appreciated.
Hany
|