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,14 @@
Use 'cc' as default compiler.
Index: make_ffi.py
--- make_ffi.py.orig
+++ make_ffi.py
@@ -76,7 +76,7 @@ def doit(vex_path):
errs = []
for cpp in cpplist:
cmd = [cpp, '-I' + vex_path, os.path.join("pyvex_c", "pyvex.h")]
- if cpp in ('cl', 'clang', 'gcc', 'cc', 'clang++', 'g++'):
+ if cpp in ('cc'):
cmd.append("-E")
try:
p = subprocess.Popen(cmd,