Building Regex++ lib on Pocket PC using Embedded VC++4.0
Has anyone tried building regex++ lib for PPC using EVC++? I can build it using VC++6.0 using the .mak files supplied with it.But I am getting errors and warnings. Error is regarding the use of typename keyword in lib source and warning is about C++ Exceptions unwinding capability. I replaced C++ try, catch by Win32 __try , __except but don't know what to do with template error? Can anybody help in this? Also can it be confirmed that its possible to port it on Win CE? Thanx in advance. Reuti
Has anyone tried building regex++ lib for PPC using EVC++?
I've never tried with that compiler - I think it's even worse than VC6 for conformance?
I can build it using VC++6.0 using the .mak files supplied with it.But I am getting errors and warnings. Error is regarding the use of typename keyword in lib source and warning is about C++ Exceptions unwinding capability.
Defining BOOST_NO_EXCEPTIONS should fix that - in fact it should get automatically set for vc with no eh support, so there could be a config bug there.
I replaced C++ try, catch by Win32 __try , __except but don't know what to do with template error?
What is there error: you may be able to just remove the typename keyword to fix the problem? John.
participants (2)
-
John Maddock
-
Reuti@sdc.canon.co.in