Skip to content

Instantly share code, notes, and snippets.

@ToniMaunde
Last active July 31, 2026 10:14
Show Gist options
  • Select an option

  • Save ToniMaunde/d91d702d0e7c8ed2bed56746c7cfad41 to your computer and use it in GitHub Desktop.

Select an option

Save ToniMaunde/d91d702d0e7c8ed2bed56746c7cfad41 to your computer and use it in GitHub Desktop.
C99 compiling flags

These flags are ideal for a strict build

-std=c99 -fsanitize=address -g -W -Wall -Werror -Werror=missing-declarations -Werror=redundant-decls -Wextra -Wpedantic -pedantic-errors -Wconversion -Wdeprecated -Wextra-semi

Note: remember to remove the -fsanitize=address and -g flags on the release build.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment