got rid of std::invoke to avoid C++17 dependence

This commit is contained in:
2025-06-01 15:40:44 -04:00
parent 178bd616f5
commit 9321846172
20 changed files with 12 additions and 8 deletions

View File

@ -16,7 +16,7 @@ builddir = "./build_mingw64"
doinstall = False #copies the build_output to the install dir when finished
cc = "x86_64-w64-mingw32-g++" #compiler
cflags = "-fPIC -O3 -std=c++17"
cflags = "-fPIC -O3"
libraries = "-l{}".format(libname)
libdirs = "-L{} -L{}/lib -L{}/lib".format(builddir,commondir,depdir)
linkerflags = "-static -static-libgcc -Wl,-rpath=."