read write routine connection

This commit is contained in:
2025-06-04 20:47:13 -04:00
parent 1610fdecd0
commit 2f1b05b0f7
20 changed files with 87 additions and 4 deletions

View File

@ -17,9 +17,9 @@ builddir = "./build_mingw64"
doinstall = True #copies the build_output to the install dir when finished
cc = "x86_64-w64-mingw32-g++" #compiler
cflags = "-fPIC -O3"
libraries = "-l{} -lamscimglib4.winx64".format(libname)
libraries = "-l{} -lamscimglib4.winx64 -lpthread".format(libname)
libdirs = "-L{} -L{}/lib -L{}/lib".format(builddir,commondir,depdir)
linkerflags = "-static-libgcc -static-libstdc++ -Wl,-rpath=."
linkerflags = "--static -static-libgcc -static-libstdc++ -Wl,-rpath=."
srcexts = [".c",".cpp"]
binsrc = ["main.c","main.cpp"] #ignore these files when compiling the static library