← Back to davo.co
aboutsummaryrefslogtreecommitdiffstats
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
parent196efd1bb2b68feec9acbdcc89c3e3df19660e12 (diff)
Add compiler optimization to README.md
-rw-r--r--README.md2
-rw-r--r--hellobin0 -> 15952 bytes
2 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
```
diff --git a/hello b/hello
new file mode 100644
index 0000000..03bf408
--- /dev/null
+++ b/hello
Binary files differ