Compare commits

..
1 Commits
Author SHA1 Message Date
sisungo 82ba54bfc6 feat: add package musl-fts
Signed-off-by: sisungo <[email protected]>
2026-07-16 14:56:05 +08:00
+1 -1
View File
@@ -12,7 +12,7 @@ def build():
pass
subprocess.run(
os.environ.get("CC", "cc").split(" ")
+ ["-std=c23", "-I", ".", "-c", "-o", "fts.o", "fts.c"],
+ ["-std=c23", "-I", ".", "-O3", "-c", "-o", "fts.o", "fts.c"],
check=True,
)
subprocess.run(["ar", "rcs", "libfts.a", "fts.o"], check=True)