过去几天我在Bochs安装了Pintos。在"线程"中编译好的一切目录,我也设置了所有的路径。我在build目录中有kernel.lo和其他文件。
问题在于我运行的最后一个命令: pintos运行alarm-multiple
这会产生错误: 无法识别的角色\ x16;标记为< - HERE after if($< - HERE在第7列附近/ home / superboy / pintos / src / utils / pintos第911行。
pintos脚本第911行的代码是:
# Calls setitimer to set a timeout, then execs what was passed to us.
sub exec_setitimer {
if (defined $timeout) {
if ($ ge 5.8.0) {
eval "
use Time::HiRes qw(setitimer ITIMER_VIRTUAL);
setitimer (ITIMER_VIRTUAL, $timeout, 0);
";
} else {
{ exec ("setitimer-helper", $timeout, @_); };
exit 1 if !$!{ENOENT};
print STDERR "warning: setitimer-helper is not installed, so ",
"CPU time limit will not be enforced\n";
}
}
exec (@_);
exit (1);
}
我正在使用Debian-9 Stretch
答案 0 :(得分:0)
用vim打开utils目录下的Pintos文件,替换字符" ^ V"通过实际输入控制字符。这应该解决它。
答案 1 :(得分:0)
我在ubuntu中重复了相同的步骤并且它有效。看起来像pintos在Debian上运行有问题。