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.
我正在为一个项目构建多个动态库。我想用 c++11 构建整个项目。在构建库时,我明确指定了 CXX 和 C 标志。我正在使用 CMAKE 3.5 来构建库。我在构建每个模块时指定 c++11 或 gnu11 版本,例如
-DCMAKE_C_FLAGS="-std=gnu11" -DCMAKE_CXX_FLAGS="-std=c++11"
我想在构建库后验证它们是否使用 c++11 运行时,有什么方法可以仔细检查吗?