|
From: Luigi B. <lui...@gm...> - 2019-08-06 07:13:51
|
Thanks. The first error, On Mon, Aug 5, 2019 at 10:16 PM Banerjee, Tapas K via QuantLib-dev < qua...@li...> wrote: > *checking for QuantLib... ./configure: line 4029: quantlib-config: command > not found* > means that you either didn't install QuantLib (the C++ library) or that you installed it in a non-standard location and configure can't find it. In the first case, install QuantLib (i.e., run `make install` and possibly `ldconfig` after you compile it). In the second case, if you installed it in /some/other/path, add /some/other/path/bin to PATH before running configure. The second error, config.status: error: cannot find input file: `CSharp/Makefile.in' # We > don’t have C# compiler, so thought it is OK to infore. > > blocks configure and prevents it from continuing and creating the Java Makefile (Makefile.in is not the makefile; it's the input that configure processes to create the makefile). Did you remove CSharp/Makefile.in? If so, start over from a clean download. Luigi |