When using the makefiles in LLVM, the commands that Make executes are hidden from the user. Instead something like: llvm[3]: Compiling Reg2Mem.cpp for Debug build is printed to the terminal, rather than the commands that are used to build Reg2Mem.cpp. Is there a way to get the makefiles to print the commands that they are executing? Regards, Ryan
Thanks! Tanya M. Lattner wrote:>>When using the makefiles in LLVM, the commands that Make executes are >>hidden from the user. Instead something like: >> >>llvm[3]: Compiling Reg2Mem.cpp for Debug build >> >>is printed to the terminal, rather than the commands that are used to >>build Reg2Mem.cpp. Is there a way to get the makefiles to print the >>commands that they are executing? > > > VERBOSE=1 > > -Tanya > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev-- Ryan M. Lefever [http://www.ews.uiuc.edu/~lefever]
> When using the makefiles in LLVM, the commands that Make executes are > hidden from the user. Instead something like: > > llvm[3]: Compiling Reg2Mem.cpp for Debug build > > is printed to the terminal, rather than the commands that are used to > build Reg2Mem.cpp. Is there a way to get the makefiles to print the > commands that they are executing?VERBOSE=1 -Tanya