SecBSD's official ports repository

This commit is contained in:
purplerain 2023-08-16 22:26:55 +00:00
commit 2c0afcbbf3
Signed by: purplerain
GPG key ID: F42C07F07E2E35B7
64331 changed files with 5339189 additions and 0 deletions

View file

@ -0,0 +1,16 @@
Index: fract4d_compiler/fc.py
--- fract4d_compiler/fc.py.orig
+++ fract4d_compiler/fc.py
@@ -148,10 +148,10 @@ class Compiler:
self.c_code = ""
self.path_lists = [[], [], [], []]
- self.compiler_name = "gcc"
+ self.compiler_name = "cc"
self.include_path = "-I%s/c/" % os.path.dirname(fract4d.__file__)
- self.flags = "-fPIC -DPIC -g -O3 -shared"
+ self.flags = "-fPIC -DPIC -shared"
self.output_flag = "-o "
self.libs = "-lm"