It there a way to see what compiler and flags were used to create an executable file in *nix? I have an old version of my code compiled and I would like to see whether it was compiled with or without optimization. Google was not too helpful, but I'm not sure I am using the correct keywords.
|
gcc has a
Afterwards, the ELF executables will contain
Of course, it won't work for executables compiled without that option. For the simple case of optimizations, you could try using a debugger if the file was compiled with debug info. If you step through it a little, you may notice that some variables were 'optimized out'. That suggests that optimization took place. |
|||
|
|
|
If you compile with the |
|||||||||
|
|
This is something that would require compiler support. You don't mention what compiler you are using but since you tagged your question If you want to inspect your binary, the |
||||
|
|
|
I highly doubt it is possible:
When compiled with:
None of the parameters can be found in the generated object:
|
|||||
|
|
If you still have the compiler (same version) you used, and it is only one flag you're unsure about, you can try compiling your code again, once with and once without the flag. Then you can compare the executables. Your old one should be identical, or very similar, to one of the new ones. |
|||
|
|
frecord-gcc-switchesis the trick for gcc, but is there a similar flag for Intel (icc)? – Mosby Aug 24 '12 at 18:30