aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorJohannes Stoelp <johannes.stoelp@gmail.com>2025-02-21 22:36:34 +0100
committerJohannes Stoelp <johannes.stoelp@gmail.com>2025-02-21 22:36:34 +0100
commitd532a9b880d36571d3fa98d075589ff7483922bc (patch)
tree534249fd63e91f7dfce1dcb520642a33260666bb /src
parent4b026881591e99425c9e8a74162a15952ff92354 (diff)
downloadnotes-d532a9b880d36571d3fa98d075589ff7483922bc.tar.gz
notes-d532a9b880d36571d3fa98d075589ff7483922bc.zip
gcc: cli opts + sanitizer
Diffstat (limited to 'src')
-rw-r--r--src/development/gcc.md28
1 files changed, 24 insertions, 4 deletions
diff --git a/src/development/gcc.md b/src/development/gcc.md
index 7d34ac3..a0925c5 100644
--- a/src/development/gcc.md
+++ b/src/development/gcc.md
@@ -2,6 +2,15 @@
## CLI
+- `-v` verbose, outputs exact compiler/linker invocations made by the gcc driver
+- `-###` dry-run, outputting exact compiler/linker invocations
+- `-print-multi-lib` print available multilib configurations
+- `--help=<class>` print description of cmdline options for given class, eg
+ `warnings`, `optimizers`, `target`, `c`, `c++`
+- `-Wl,<opt>` additional option passed to the linker invocation (can
+ be specified multiple times)
+- `-Wl,--trace` trace each file the linker touches
+
### Preprocessing
While debugging can be helpful to just pre-process files.
@@ -10,10 +19,6 @@ gcc -E [-dM] ...
```
- `-E` run only preprocessor
- `-dM` list only `#define` statements
-- `-###` dry-run, outputting exact compiler/linker invocations
-- `-print-multi-lib` print available multilib configurations
-- `--help=<class>` print description of cmdline options for given class, eg
- `warnings`, `optimizers`, `target`, `c`, `c++`
### Target options
```bash
@@ -35,6 +40,21 @@ gcc --help=optimizers
# instead showing their description.
```
+### Sanitizer
+```bash
+# Enable address sanitizer, a memory error checker (out of bounds, use after free, ..).
+gcc -fsanitize=address ...
+
+# Enable leak sanitizer, a memory leak detector.
+gcc -fsanitize=leak
+
+# Enable undefined behavior sanitizer, detects various UBs (integer overflow, ..).
+gcc -fsanitize=undefined ...
+
+# Enable thread sanitizer, a data race detector.
+gcc -fsanitize=thread
+```
+
## [Builtins][builtins]
### `__builtin_expect(expr, cond)`