gnu make - How do I see the invocations caused by running cmake-generated makefiles? -
how see g++ invocations caused running make? generating makefile using cmake, quite large.
using verbose=1, cmake still hiding g++ invocations:
[ 0%] building cxx object ui/cmakefiles/ui.dir/mainwindow.cc.o in file included /users/neil/nn/src/ui/mainwindow.h:6, /users/neil/nn/src/ui/mainwindow.cc:9: /users/neil/nn/src/./core/globals.h:8:26: error: glog/logging.h: no such file or directory i want see if it's passing right include directors g++ because it's not finding glog/logging.h
peek in cmakefiles/ui.dir/ directory; you'll interested in flags.make file, though non-includes portion of g++ invocation stored in build.make.
Comments
Post a Comment