Hello Diego, That would indeed be the place to look. You should see the file contents in the 'text' variable after the config file is read.
I just tried your config file on windows XP with MSVC2005 and 2008 and both read your config file as expected, without errors. Just went through your compile steps again, and noticed something that sets off a big alarm: 2. I compile it with VC++ (MinSizeRel) and install it (c:\Program Files\Boost) <snip> 5. I compiled ALL BUILD (Debug) It is a bad idea to mix different kinds/versions of runtime libraries (in casu: a debug and a release one) in MSVC, and this could be the source of your problem. Your linker probably warned about mixing MSVCRT types; I suggest you take these warnings serious. If it didn't, you're still mixing debug and release compile units, which you (generally) can't do. Either compile boost in Debug, or compile Wt in MinSizeRel. Even better, install the boost libraries we recommend. They have their build type encoded in the filename and link automatically to the correct libraries, whether you've compiling Debug or Release builds. See our windows installation instructions: http://redmine.webtoolkit.eu/wiki/wt/Installing_Wt_on_MS_Windows Best regards, Wim Dumon. 2010/3/17 Diego Cantor-Rivera <[email protected]>: > On 2:59 PM, OvermindDL1 wrote: > > On Tue, Mar 16, 2010 at 4:54 PM, Diego Cantor-Rivera > <[email protected]> wrote: > > > That is what I thought. I tried to check it manually but I didn't see > anything. Doesn't this file gets automatically generated when you run > cmake? (I have no idea) > > I am attaching it here. > > > Hmm, I did a quick look through it as well, looks fine. The fact that > it expects a < indicates a parsing error, but the error reporting does > not say 'where'... > > And yes, by default it is auto-generated. Hmm. You might step > through the parser and see where it fails and where it was in the > parsing stream, that would tell you where in the config file it is > dieing at... > > > > > Ok I think I'm starting to have an idea of where the problem lies. I am > debugging Configuration.C in the wthttp project. > it fails inside void Configuration::readConfiguration(...) > I will post later what the result from the debugging session. > > Thanks, > > Diego > > -- > > Diego Cantor-Rivera > Ph.D.Student in Biomedical Engineering, University of Western Ontario > Imaging Research Laboratories, Robarts Research Institute > P.O. Box 5015, 100 Perth Drive, London, ON, Canada N6A 5K8 > email: dcantor <at>imaging.robarts.ca > Visit me at: http://bit.ly/dcantor/ > > ------------------------------------------------------------------------------ > Download Intel® Parallel Studio Eval > Try the new software tools for yourself. Speed compiling, find bugs > proactively, and fine-tune applications for parallel performance. > See why Intel Parallel Studio got high marks during beta. > http://p.sf.net/sfu/intel-sw-dev > _______________________________________________ > witty-interest mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/witty-interest > > ------------------------------------------------------------------------------ Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for parallel performance. See why Intel Parallel Studio got high marks during beta. http://p.sf.net/sfu/intel-sw-dev _______________________________________________ witty-interest mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/witty-interest
