From help-request at octave dot org Mon Dec 20 12:24:29 2004 Subject: Re: DOCSTRINGS up to date From: Per Persson To: Samir Sharshar Cc: help at octave dot org, Joe Koski Date: Mon, 20 Dec 2004 19:25:57 +0100 On Dec 20, 2004, at 10:07, Samir Sharshar wrote: > g++ -fast -mdynamic-no-pic -o munge-texi munge-texi.cc > making arith.texi from arith.txi > make[3]: *** [arith.texi] Error 138 > make[2]: *** [interpreter] Error 2 > make[1]: *** [doc] Error 2 > make: *** [all] Error 2 Have you tried compiling munge-texi without the -fast flag? cd doc/interpreter/ g++ -o munge-texi munge-texi.cc make In my case, -fast broke munge-texi: interpreter$ g++ -mcpu=G4 -fast -mdynamic-no-pic -o munge-texi munge-texi.cc interpreter$ rm arith.texi interpreter$ make make -C ../../src DOCSTRINGS make[1]: `DOCSTRINGS' is up to date. make -C ../../scripts DOCSTRINGS make[1]: `DOCSTRINGS' is up to date. making arith.texi from arith.txi make: *** [arith.texi] Error 138 whereas it works without it: interpreter$ g++ -mdynamic-no-pic -o munge-texi munge-texi.cc interpreter$ make make -C ../../src DOCSTRINGS make[1]: `DOCSTRINGS' is up to date. make -C ../../scripts DOCSTRINGS make[1]: `DOCSTRINGS' is up to date. making arith.texi from arith.txi making audio.texi from audio.txi audio.texi is unchanged (Note that I'm sadly lacking a G5, thus the -mcpu=G4 flag ;-) /Per ------------------------------------------------------------- Octave is freely available under the terms of the GNU GPL. Octave's home on the web: http://www.octave.org How to fund new projects: http://www.octave.org/funding.html Subscription information: http://www.octave.org/archive.html -------------------------------------------------------------