Re: [brlcad-devel] mged fails regesssion on trunk
Open Source Solid Modeling CAD
Brought to you by:
brlcad
|
From: Christopher S. M. <br...@ma...> - 2012-04-09 18:02:30
|
On Apr 8, 2012, at 8:59 AM, Tom Browder wrote: > Oops, some difference. Both builds fail the regression, but at the > command line differences: > > autotools: the mged '?' and 'help' commands work > > cmake: the mged '?' and 'help' commands DO NOT work > > On both builds the other mged commands seem to all work (not an > exhaustive test). At a glance, the difference there is the type of command. For both MGED and Archer, some commands are built-in registered from C (most of the editing commands like 'in' and 'make') while others are implemented in Tcl (such as '?' and 'reid'). If a pure-Tcl command fails, it's usually a path problem of some sort. That could be a compile-time or run-time path issue but is almost always related to the Tcl auto_path. It's usually seen when there are partial installs, multiple versions of Tcl, running without installation, etc, as you noted with your follow-up "fix". Cheers! Sean |