|
| From: | Michael Godfrey |
| Subject: | [Octave-bug-tracker] [bug #47346] after install octave seg faults during startup with --debug option |
| Date: | Tue, 08 Mar 2016 21:09:57 +0000 |
| User-agent: | Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 |
Follow-up Comment #33, bug #47346 (project octave):
Rik:
Here is what I have in:
/usr/local/share/octave/4.1.0+/m/scripts/testfun/__have_feature__.m
function retval = __have_feature__ (feature)
features = octave_config_info ("features");
if (iscellstr (feature))
retval = (all (isfield (features, feature))
&& cellfun (@(x) features.(x), feature));
elseif (ischar (feature))
retval = isfield (features, feature) && features.(feature);
else
retval = false;
endif
endfunction
========================================
But, this cannot be right. The "features" should at least
be "build features". Right?
But, before we do more we should check on what John is doing. Right?
_______________________________________________________
Reply to this item at:
<http://savannah.gnu.org/bugs/?47346>
_______________________________________________
Message sent via/by Savannah
http://savannah.gnu.org/
| [Prev in Thread] | Current Thread | [Next in Thread] |