This commit is contained in:
madrocketsci
2025-05-12 13:09:10 -04:00
parent 0866d42781
commit b722664be4
21 changed files with 1142 additions and 3 deletions

View File

@ -16,7 +16,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{} -lamsmathutil2.linux64".format(libname)
libdirs = "-L{} -L{}/lib".format(builddir,commondir)
linkerflags = "-static -static-libgcc -Wl,-rpath=."
srcexts = [".c",".cpp"]

View File

@ -17,7 +17,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"
libraries = "-l{}".format(libname)
libraries = "-l{} -lamsmathutil2.mingw64".format(libname)
libdirs = "-L{} -L{}/lib -L{}/lib".format(builddir,commondir,depdir)
linkerflags = "-static -static-libgcc -Wl,-rpath=."
srcexts = [".c",".cpp"]