我怎样才能排除输出源文件元数据进行编译时?(How can I exclude source fil

2019-10-21 18:58发布

例如:

$ gcc -O3 foobar.c -o foobar
$ grep 'foobar\.c' foobar
Binary file foobar matches

我怎样才能排除的输出,不必要的和揭示元数据gcc等编译器? 它出现无论的输出是否是汇编文件,对象文件,或可执行。

Answer 1:

人条带(1)

> strip -s a.out


文章来源: How can I exclude source file metadata from output when compiling?