I want to check for all syntax & semantic errors in the flow while not wasting time on waiting it to compile every time.
Is it possible with compiler architecture that gcc uses?
If possible, how?
I want to check for all syntax & semantic errors in the flow while not wasting time on waiting it to compile every time.
Is it possible with compiler architecture that gcc uses?
If possible, how?
GCC has a -fsyntax-only
flag which checks for syntax errors, see 3.8 Options to Request or Suppress Warnings.