Is there a GCC pragma directive that will stop,halt, or abort the compilation process?
I am using gcc 4.1 but would want the pragma to be available on gcc 3.x versions also.
|
Is there a GCC pragma directive that will stop,halt, or abort the compilation process? I am using gcc 4.1 but would want the pragma to be available on gcc 3.x versions also. |
|||||
|
|
You probably want
|
|||
|
|
|
I do not know about a #pragma, but #error should do what you want:
Will terminate compilation with the error message "Failing compilation" |
|||
|
|