Hello Christoph,

Christoph Schäfer wrote:
> Hi Carsten,
> 
> tried it with debugrt, which is listed in OpenSG.py. But the build 
> script fails to validate the var_type=debugrt option and stops building 
> right in the beginning. Adding debugrt to the known values for this 
> option fixes this problem.
> This is for svn 1530. After line 630 in 
> Tools\scons-build\OpenSG\AddOnHacks.py the following line must be inserted:
> 
> self.variants["type"][0].append("debugrt")

yes, looking at that line I wonder if SConsAddons changed the name from 
"hybrid" to "debugrt" at some point...

> For some reason the debugrt libs are located within the 
> instlinks\lib\opt folder. Special reason or just some little bug?

that is a bug in the SConstruct, line 935ff should look like this:

if "debug" == combo["type"]:
   inst_paths["lib_inst_combo"] = pj(inst_paths["lib_inst_combo"],"debug")
elif "debugrt" == combo["type"]:
   inst_paths["lib_inst_combo"] = pj(inst_paths["lib_inst_combo"],"debug")
else:
   inst_paths["lib_inst_combo"] = pj(inst_paths["lib_inst_combo"],"opt")

        Thanks for reporting these issues,
                Carsten

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Opensg-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/opensg-users

Reply via email to