summaryrefslogtreecommitdiff
path: root/make.c
diff options
context:
space:
mode:
Diffstat (limited to 'make.c')
-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");