Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直在使用 Auto-tools(C++ 是语言)编写一个小型开源软件,并生成/安装了一个执行程序。使用了一些蒙特卡洛积分,代码很慢。我想用gprof来改进,想问一下如何启用gprof呢?我试过了: ./configure CFLAGS=-pg && make && sudo make install 这不起作用。
您需要 CXXFLAGS,而不是 CFLAGS,因为您使用的是 C++。