LoginSignup
7
5

More than 5 years have passed since last update.

[Make] make実行時の詳細表示有効化メモ

Posted at

Makefileで実行されるコマンドの詳細表示有効化メモ

autotools, CMake で生成したMakefileの場合

$ make VERBOSE=1
or
$ make V=1

自前で作成したMakefileの場合

$ make SHELL='sh -x'

参考

makefile - How do I force make/gcc to show me the commands? - Stack Overflow

7
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
5