Cuando ejecute make, agregue VERBOSE=1
para ver el resultado completo del comando. Por ejemplo:
cmake .
make VERBOSE=1
O puede agregar -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON
al comando cmake para obtener un resultado detallado del comando detallado de los Makefiles generados.
cmake -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON .
make
Para reducir algunos resultados posiblemente menos interesantes, puede utilizar las siguientes opciones. La opción CMAKE_RULE_MESSAGES=OFF
elimina líneas como [33%] Building C object ... , mientras que --no-print-directory
le dice a make que no imprima el directorio actual filtrando líneas como make[1]: Entering directory
y make[1]: Leaving directory
.
cmake -DCMAKE_RULE_MESSAGES:BOOL=OFF -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON .
make --no-print-directory
mkdir build; cd build; cmake .. --debug-output; make VERBOSE=1