diff options
author | Thomas Voss <mail@thomasvoss.com> | 2025-09-07 15:59:44 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2025-09-07 15:59:44 +0200 |
commit | 8ae1946b9154197a04bb90786206733f04128e1f (patch) | |
tree | b0aa2f4c5281b6f8ffd1956a8dfe568f3c68424a | |
parent | 3e23f520469f7da2873a8635942e165bd7ccba1d (diff) |
Build with optimizations
-rw-r--r-- | make.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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"); |