<div dir="ltr">Given the request was related to being able to print in the code the optimization level, this SO question seems better suited: 

<a href="https://stackoverflow.com/questions/31718637/determine-optimization-level-in-preprocessor">https://stackoverflow.com/questions/31718637/determine-optimization-level-in-preprocessor</a></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Sun, 28 Jun 2020 at 19:35, Helmut Walle <<a href="mailto:helmut.walle@gmail.com">helmut.walle@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Assuming you only have the binary executable, the question, while conceptually simple, actually <br>
is complex in practice. You could disassemble the binary and look for signs of optimisation (or <br>
the absence of the respective signs) there... but the obvious problem with that is that if you <br>
"optimise" something with a certain switch, and the input doesn't yield anything in that regard, <br>
the output will be exactly the same as without that switch... So you would expect to get more <br>
mileage out of this approach for more complex programs, as the probability of something actually <br>
being achieved by optimisation is greater than for something that is so quick and simple that <br>
optimisation doesn't make a difference to the output.<br>
<br>
Now this is all very nice in theory, but in practice it would still mean that you would have to <br>
create the analytics tooling yourself (unless someone has already done it).<br>
<br>
All of that being said, the question is not exactly new - see here for some quick discussions of <br>
some of the relevant points:<br>
<br>
<a href="https://stackoverflow.com/questions/189350/detect-gcc-compile-time-flags-of-a-binary/340828" rel="noreferrer" target="_blank">https://stackoverflow.com/questions/189350/detect-gcc-compile-time-flags-of-a-binary/340828</a><br>
<a href="https://stackoverflow.com/questions/9307960/find-out-compilation-optimization-flag-from-executable" rel="noreferrer" target="_blank">https://stackoverflow.com/questions/9307960/find-out-compilation-optimization-flag-from-executable</a><br>
<br>
Why does it even matter?<br>
<br>
Kind regards,<br>
<br>
Helmut.<br>
<br>
<br>
On 28/06/2020 18:47, Charles Manning wrote:<br>
> Hi All<br>
> <br>
> I want to be able to tell in some logs what optimisation level was used to compile some code.<br>
> <br>
> eg.<br>
>   printf("This code was optimised with %s\n", omptimisation_string());<br>
> <br>
> And this would print:<br>
> "This code was optimised with -Os\n" or whatever.<br>
> <br>
> Does anyone know of such a thing in gcc?<br>
> <br>
> Thanks.<br>
> <br>
> <br>
> _______________________________________________<br>
> Chchrobotics mailing list <a href="mailto:Chchrobotics@lists.ourshack.com" target="_blank">Chchrobotics@lists.ourshack.com</a><br>
> <a href="https://lists.ourshack.com/mailman/listinfo/chchrobotics" rel="noreferrer" target="_blank">https://lists.ourshack.com/mailman/listinfo/chchrobotics</a><br>
> Mail Archives: <a href="http://lists.ourshack.com/pipermail/chchrobotics/" rel="noreferrer" target="_blank">http://lists.ourshack.com/pipermail/chchrobotics/</a><br>
> Meetings usually 3rd Monday each month. See <a href="http://kiwibots.org" rel="noreferrer" target="_blank">http://kiwibots.org</a> for venue, directions and dates.<br>
> When replying, please edit your Subject line to reflect new subjects.<br>
> <br>
<br>
_______________________________________________<br>
Chchrobotics mailing list <a href="mailto:Chchrobotics@lists.ourshack.com" target="_blank">Chchrobotics@lists.ourshack.com</a><br>
<a href="https://lists.ourshack.com/mailman/listinfo/chchrobotics" rel="noreferrer" target="_blank">https://lists.ourshack.com/mailman/listinfo/chchrobotics</a><br>
Mail Archives: <a href="http://lists.ourshack.com/pipermail/chchrobotics/" rel="noreferrer" target="_blank">http://lists.ourshack.com/pipermail/chchrobotics/</a><br>
Meetings usually 3rd Monday each month. See <a href="http://kiwibots.org" rel="noreferrer" target="_blank">http://kiwibots.org</a> for venue, directions and dates.<br>
When replying, please edit your Subject line to reflect new subjects.</blockquote></div>