Hi Josef,

> Hi Andreas,
> 
> Thanks for your quick answer.
> 
> 
>     many thanks for the patch I added it to the cvs. Right now there is now
>     way to link against external debug libs. To avoid mixing release and
>     debug msvc system libs you can compile OpenSG on windows with
>     type=dbgopt this creates a optimized release version with extra pdb
>     files which include the debug information.
> 
> 
> Currently, in debug, my OSGContribD links against ode release lib. What 
> I would like to do is to link the OSGContribD against the ode debug libs.

What's the advantage of compiling a debug OpenSG lib on windows?

> In the Sconstruct file I added those two rows:
> 
> physics_lib_path = [os.path.join(_po.getOption('contrib_physics'), 
> 'lib/releasedll')]
> env.Append(LIBS=['ode'])
> 
> which are specifically for release stuff. I would like to understand how 
> I can specify the ode debug libs.

if _po.buildDbg():
     env.Append(LIBS=['oded'])
else:
     env.Append(LIBS=['ode'])

not very nice and this works only for windows.

Andreas

> Any hint?
> 
> -- 
> Josef Grunig
> 
> 
> ------------------------------------------------------------------------
> 
> -------------------------------------------------------------------------
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the chance to share your
> opinions on IT & business topics through brief surveys-and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> 
> 
> ------------------------------------------------------------------------
> 
> _______________________________________________
> Opensg-users mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/opensg-users


-- 
VREC
Robert-Bosch-Straße 7
D-64293 Darmstadt
Tel. 06151-4921035

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Opensg-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/opensg-users

Reply via email to