在i686 / 32位双CPU上,安装了新的Debian Stretch,我已经安装了Octave 4.2.1并在为其提供执行权限后运行./mytest
:
#!/bin/bash
./mytest.m
其中test.m
读取
#!/usr/bin/octave
exit(0)
结果是:
Terminate called after throwing an instance of 'octave::exit_exception'
panic: Aborted -- stopping myself...
attempting to save variables to 'octave-workspace'..
save to 'octave-workspace' complete
octave exited with signal 6
但程序打算正常退出。将exit
替换为quit
的结果相同,但在使用$ octave -q --no-gui
然后> quit
启动时会正确终止。这里有什么问题?
更新:同时,这显示:http://savannah.gnu.org/bugs/?49271,所以现在问题是:非Octave配置可以解决问题吗? (已确认:Octave 4.0.0不会重现错误。)