2022-04-22 03:43 AM
2022-04-22 05:51 AM
Run the compiler as if it was the 1999 version, i.e. with features/checks/limits of back then. Useful for code that was written and tested with C99 compiler, and won't compile or run properly with current compiler.
Paul
2022-04-22 06:07 AM
thank you
I have a GLCD library and use functions that was defined in it
When I use extern function define it will be error
by use --C99 comand it will be OK
2022-04-22 06:32 AM
2022-04-22 08:24 AM
C99 is a standard and --c99 will compile code in that standard.
https://developer.arm.com/documentation/dui0491/i/Compiler-Command-line-Options/--c99?lang=en
The next standard was C11, which changed some things.
Read and interpret the error messages to debug the code.