Compare commits
1
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
82ba54bfc6 |
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user