updated file io test to avoid crash

This commit is contained in:
2025-10-03 20:34:49 -04:00
parent 47a2ee98b4
commit fcbb1d2941
18 changed files with 2255 additions and 9 deletions

View File

@ -17,7 +17,7 @@ builddir = "./build_linux64"
doinstall = True #copies the build_output to the install dir when finished
cc = "g++" #compiler
cflags = "-fPIC"
libraries = "-l{}".format(libname)
libraries = "-l{} -lpthread".format(libname)
libdirs = "-L{} -L{}/lib -L{}/lib".format(builddir,commondir,depdir)
linkerflags = "-static -static-libgcc -Wl,-rpath=."
srcexts = [".c",".cpp"]