changing to refs to reduce pass-by-value overhead

This commit is contained in:
2026-04-09 14:48:31 -04:00
parent fc160a0180
commit 35cfeccc53
90 changed files with 8180 additions and 215 deletions

23
old/feb2026/run.py Normal file
View File

@ -0,0 +1,23 @@
#!/usr/bin/python3
import os,sys,math;
from compscripts.complib2 import *;
args = sys.argv
if(len(args)>=2):
if(args[1]=="clean"):
obj_list = flist('./objstore',recurse=True,exts=['.o'])
for o in obj_list:
os.remove('{}'.format(o))
exit(0)
os.system('python3 ./compscripts/linux64.makelib.py')
os.system('python3 ./compscripts/linux64.maketest.py')
# obj_list = flist('./src',recurse=True,exts=['.o'])
# for o in obj_list:
# os.remove('{}'.format(o))
#os.chdir('./bin_linux64')
callproc('./bin_linux64/test')
#os.chdir('..')