how can i build a static dll ?
ineed to build libgcc_s_dw2-1.dll, libgfortran-3.dll and libquadmath-0.dll into the libopenblas.dll with the gcc static compiler?
i use the command:
make BINARY=32 DYNAMIC_ARCH=1
where to add the -static option?
Try providing your own CFLAGS, something like
make CFLAGS='-O2 -static -static-libgcc'
dll is meant to be dynamic, first letter says it.
You can skip fortran library dependency by not building lapack or hiding gfortran compiler.
thanks
Can you close the issue?
Most helpful comment
Try providing your own CFLAGS, something like
make CFLAGS='-O2 -static -static-libgcc'