dllwrap fails because of too many parameters
A free, portable, fast and simple C/C++ IDE
Brought to you by:
orwelldevcpp
I'm trying to build QuantLib ( https://github.com/lballabio/quantlib/ ) from source. The repository already contains a QuantLib.dev file. But when I try to make a .dll file, the dllwrap step in the build process fails. It seems the arguments passed to dllwrap is too long for the command line to handle and it ignores the -o parameter, even though it is included.
Is it possible to reference the .o files using a wildcard, e.g. *.o , instead of referencing them each individually?
As of version 5.7.0, Dev-C++ will call gcc or g++ directly instead of calling the deprecated and badly documented dllwrap and letting it do its work. This might change the behaviour of this bug. Please keep me informed of any changes. ;)
Thanks. I've tested with 5.8 and Quantlib compiles successfully now. Much appreciated.