How can I get full messages when I compile Geant4?


When compiling Geant4 source code or user's application, by default only the error/warning messages and just the name of compiling file are shown. If you need all echo back of compilation commands, try

 % env CPPVERBOSE=1 gmake

to get them. Also if you want to keep everything into a log, try

 % env CPPVERBOSE=1 gmake >& logfile


Courtesy of Masanobu Ozaki

Makoto Asai