从源代码构建 GNU Octave 时出错
make error while building GNU Octave from sources
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 系统上。
像这样创建名为 'extended.tex' 的文件:
touch doc/interpreter/extended.tex
您必须在 octave/.build/ 目录中执行此操作。
如果以后出现类似的错误,请执行此操作。它以这种方式对我有用。
有时构建过程会尝试重建所有文档。
我正在从源 octave-5.2.0.tar.lz
文件构建,并且
通常的解决方法是
touch AUTHORS BUGS INSTALL.OCTAVE
在 configure
和第一个 make
之间
建树。
在构建阶段结束时,我只有两个 PDF
./doc/interpreter/octave.pdf
./doc/liboctave/liboctave.pdf
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 系统上。
像这样创建名为 'extended.tex' 的文件:
touch doc/interpreter/extended.tex
您必须在 octave/.build/ 目录中执行此操作。
如果以后出现类似的错误,请执行此操作。它以这种方式对我有用。
有时构建过程会尝试重建所有文档。
我正在从源 octave-5.2.0.tar.lz
文件构建,并且
通常的解决方法是
touch AUTHORS BUGS INSTALL.OCTAVE
在 configure
和第一个 make
之间
建树。
在构建阶段结束时,我只有两个 PDF
./doc/interpreter/octave.pdf
./doc/liboctave/liboctave.pdf