【发布时间】:2020-04-26 15:35:45
【问题描述】:
mkdir .build && \
cd .build && \
./../configure --prefix=$HOME/my_octave && \ [1]
make -j2 && \ [2]
make check && \
make install
在运行时 make -j2 我得到的错误是
error: print: error opening file 'extended.tex'
error: called from print>latex_standalone at line 1029 column 5
__opengl_print__ at line 214 column 5
print at line 759 column 16 plotimages at line 109 column 7
GEN doc/interpreter/gplot.pdfMakefile:27911: recipe for target `'doc/interpreter/extended.pdf' failedmake[2]: *** [doc/interpreter/extended.pdf] Error `1make[2]: *** Waiting for unfinished jobs....make[2]: Leaving directory `'/home/bhanu/octave/.build'Makefile:26305: recipe for target 'all-recursive' failedmake[1]: *** `[all-recursive] Error 1make[1]: Leaving directory '/home/bhanu/octave/.build'Makefile:9916:
recipe for target 'all' failedmake: *** [all] Error 2
有人可以帮我解决错误吗?我在 Ubuntu 18.04 系统上运行它。
【问题讨论】:
-
你先添加依赖了吗? (例如 sudo apt build-dep octave)。另外,您要构建哪个八度音阶?我在我的 Makefile 中没有看到与“extended.tex”类似的行...