Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

which will send all the output from the make command to the file 'make.out' as well as the terminal. This is recommended as the output is lengthy.

Info
titleSeeing command output

If using cmake, it will normally hide all the output from the compile commands. If you want to see the compile command (to check the compile options), do:

make VERBOSE=1
Info
titleParallel make

If your computer has multiple cores as many, use the -j flag to make to build grib_api faster. e.g.

Code Block
make -j 3 | tee make.out

...