summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2025-09-07 15:59:44 +0200
committerThomas Voss <mail@thomasvoss.com> 2025-09-07 15:59:44 +0200
commit8ae1946b9154197a04bb90786206733f04128e1f (patch)
treeb0aa2f4c5281b6f8ffd1956a8dfe568f3c68424a
parent3e23f520469f7da2873a8635942e165bd7ccba1d (diff)
Build with optimizations
-rw-r--r--make.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/make.c b/make.c
index c34fbde..cb792e4 100644
--- a/make.c
+++ b/make.c
@@ -190,7 +190,8 @@ tiktok(void)
{
struct strs cmd = {};
strspushenvl(&cmd, "CC", "cc");
- strspushenvl(&cmd, "CFLAGS", "-Wall", "-Wextra", "-Wpedantic", "-std=c23");
+ strspushenvl(&cmd, "CFLAGS", "-Wall", "-Wextra", "-Wpedantic", "-std=c23",
+ "-O3", "-pipe");
char buf[PATH_MAX];
const char *ev = getenv("PODIR");