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.
我看到 GCC 4.5 及以上版本应该支持 –D_FORTIFY_SOURCE=2 选项。但它对我不起作用,它已被忽略,并且在我使用时它不会报告问题。
使用的编译器版本是“g++.c4.5.3-p0”,会忽略这个选项吗?
在大多数系统中,–D_FORTIFY_SOURCE=2仅在使用 时才被激活-O2,即 GCC 编译器优化级别 2(或更高)。尝试使用-O2 –D_FORTIFY_SOURCE=2,看看是否有效。
–D_FORTIFY_SOURCE=2
-O2
-O2 –D_FORTIFY_SOURCE=2