We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e979810 commit 2a64d52Copy full SHA for 2a64d52
README.md
@@ -67,3 +67,12 @@ List of supported model attributes:
67
68
* [`MOI.ObjectiveSense()`](@ref)
69
70
+## Compile your own binaries
71
+
72
+In order to compile your own `libdsdp.so` to be used of DSDP.jl, use the following
73
+```sh
74
+OB_DIR=$(julia --project=. -e 'import OpenBLAS32_jll; println(OpenBLAS32_jll.OpenBLAS32_jll.artifact_dir)')
75
+OB="-L${LIBOB_DIR}/lib -lopenblas"
76
+make DSDPCFLAGS="-g -Wall -fPIC -DPIC" LAPACKBLAS="$OB" dsdplibrary
77
+make DSDPCFLAGS="-g -Wall -fPIC -DPIC" LAPACKBLAS="$OB" SH_LD="${CC} ${CFLAGS} -Wall -fPIC -DPIC -shared $OB" oshared
78
+```
0 commit comments