219
edits
No edit summary |
|||
Line 65: | Line 65: | ||
So after checkout I had to compile the source tree (used ccache in the hope of faster checkout-compile cycles). | So after checkout I had to compile the source tree (used ccache in the hope of faster checkout-compile cycles). | ||
./bootstrap | ./bootstrap | ||
cd .. && mkdir octave-build | cd .. && mkdir octave-build && cd octave-build | ||
export CXX="ccache g++" | export CXX="ccache g++" | ||
export CC="ccache gcc" | export CC="ccache gcc" | ||
../octave/configure | ../octave-src/configure | ||
make -j 7 | make -j 7 | ||
After compilation I tried my | After compilation I tried my test min_testcase_fails.m: | ||
./run-octave -q ../min_testcase_fails.m | ./run-octave -q ../min_testcase_fails.m | ||
edits