- Solution for dynamic module:
Singular uses dynamic modules at 2 places:
* for polynomial operations
but there is a variant without dynamic modules
the configure options
Code:
--disable-p-procs-dynamic --enable-p-procs-static
should select this variant (configure should automatically select this on Windows)
* for optional pacakages
can be embedded via
Code:
----with-builtinmodules=a,b,c
Technical background: dynamic modules are shared libarires with unresolved
symbols from the Singular kernel. The dynamic linker on ELF systems
(and on HPUX) resolves theese references automatically during the loading.
AFAIK the dynamic linker on Windows cannot do this, so dynamic modules
(at least currently) cannot work on Windows, but work-arounds exists - see above.