Tool/software: TI C/C++ Compiler
Hi
I previously used compiler version 7.4.17
It had the following GNUC symbols
_GNUC_ = 3
_GNUC_MINOR = 0
If i change the compiler version to 8.1.3 I have the following:
_GNUC_GNU_INLINE = 1
_GNUC_MINOR = 3
_GNUC_PATCHLEVEL = 0
A lot of code is dependent on preprocessor _GNUC_
What can I do to get it (besides defining it myself)
If only defining it by myself is an option than : What is the GNUC version? for this compiler
Also i noticed that a few of my projects don't show all of the built in symbols (even though the show built in symbols is turned on) however the symbols are defined. I checked in the code. Any idea why?