A non exhaustive list of gcc compiler options.
$ gcc myprog.c -o myprog -Wall -Wextra -pedantic -std=c11 [...]
// Did you know that [Compiler Explorer](godbolt.org) allows you to include any file | |
// from the internet ? | |
// | |
// Just add the following line to your C source: | |
// | |
// #include | |
// <https://gist.githubusercontent.com/g-berthiaume/84160d113e5639e480eae9a0ef3af1ba/raw/1fde54c83ec3ff74dad536e0bb36d14d4db4e36b/godbolt_utils.h> | |
// | |
// This file's purpose is to create a collection of utilities for increasing my productivity on | |
// godbolt. This file is unlicensed. Do what you want with it. :^) |