← Back to davo.co
aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorDavid Faulkner <[email protected]>2026-08-05 20:41:54 -0500
committerDavid Faulkner <[email protected]>2026-08-05 20:41:54 -0500
commit1110f6a5a8e83fd4f5891148fa63b6d3c41689e9 (patch)
tree5a4a19e54d906ec84ec1f40fb86fab2c0ab36c15 /README.md
parent196efd1bb2b68feec9acbdcc89c3e3df19660e12 (diff)
Add compiler optimization to README.md
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 192b973..efef158 100644
--- a/README.md
+++ b/README.md
@@ -5,6 +5,6 @@ A minimalist C application hosted on `git.davo.co`.
## Building & Running
```bash
-gcc -Wall -Wextra -std=c23 main.c -o hello
+gcc -Wall -Werror -O2 -std=c23 main.c -o hello
./hello
```