build adjustmnet

This commit is contained in:
2026-06-02 18:29:52 -04:00
parent bcf1262307
commit fa09e3be9c
35 changed files with 8 additions and 4 deletions

View File

@ -16,7 +16,8 @@ builddir = "./build_linux64"
doinstall = True #copies the build_output to the install dir when finished
cc = "nvcc" #compiler
cflags = "-dc --compiler-options '-fPIC -O3'"
#cflags = "-dc --compiler-options '-fPIC -O3'"
cflags = "-dc -Xcompiler -fPIC -Xcompiler -O3"
libraries = "-l{}".format(libname)
libdirs = "-L{} -L{}/lib -L{}/lib".format(builddir,commondir,depdir)
linkerflags = " -Xlinker=-rpath,."

View File

@ -16,7 +16,8 @@ builddir = "./build_linux64"
doinstall = True #copies the build_output to the install dir when finished
cc = "nvcc" #compiler
cflags = "-dc --compiler-options '-fPIC -O3'"
#cflags = "-dc --compiler-options '-fPIC -O3'"
cflags = "-dc -Xcompiler -fPIC -Xcompiler -O3"
libraries = "-l{} -lpthread".format(libname)
libdirs = "-L{} -L{}/lib -L{}/lib".format(builddir,commondir,depdir)
linkerflags = " -Xlinker=-rpath,."

View File

@ -16,7 +16,8 @@ builddir = "./build_msvc64"
doinstall = True #copies the build_output to the install dir when finished
cc = "nvcc" #compiler
cflags = "-dc --compiler-options '-fPIC -O3'"
#cflags = "-dc --compiler-options '-fPIC -O3'"
cflags = "-dc -Xcompiler -fPIC -Xcompiler -O3"
libraries = "-l{}".format(libname)
libdirs = "-L{} -L{}/lib -L{}/lib".format(builddir,commondir,depdir)
linkerflags = " -Xlinker=-rpath,."

View File

@ -16,7 +16,8 @@ builddir = "./build_msvc64"
doinstall = False #copies the build_output to the install dir when finished
cc = "nvcc" #compiler
cflags = "-dc --compiler-options '-fPIC -O3'"
#cflags = "-dc --compiler-options '-fPIC -O3'"
cflags = "-dc -Xcompiler -fPIC -Xcompiler -O3"
libraries = "-l{}".format(libname)
libdirs = "-L{} -L{}/lib -L{}/lib".format(builddir,commondir,depdir)
linkerflags = " -Xlinker=-rpath,."