Building Quantlib - Time Taken?

classic Classic list List threaded Threaded
8 messages Options
dom
Reply | Threaded
Open this post in threaded view
|

Building Quantlib - Time Taken?

dom
I am in the process of building Quantlib and the build process has been running for 5 hours now on a P4, 2Gig Ramm Pentium, Windows XP (Win32).

Should it be taking this long.  I'm just starting to wonder if I will be here waiting this time tomorrow
Reply | Threaded
Open this post in threaded view
|

Re: Building Quantlib - Time Taken?

cheng li
Hi Dom,
On my machine, it took about
 30 mins. My machine is with i3 cpu, 8g ram, win7 x64

regards,
Cheng

发自我的 iPad

> 在 2014年11月30日,21:16,dom <[hidden email]> 写道:
>
> I am in the process of building Quantlib and the build process has been
> running for 5 hours now on a P4, 2Gig Ramm Pentium, Windows XP (Win32).
>
> Should it be taking this long.  I'm just starting to wonder if I will be
> here waiting this time tomorrow
>
>
>
> --
> View this message in context: http://quantlib.10058.n7.nabble.com/Building-Quantlib-Time-Taken-tp16087.html
> Sent from the quantlib-users mailing list archive at Nabble.com.
>
> ------------------------------------------------------------------------------
> Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
> from Actuate! Instantly Supercharge Your Business Reports and Dashboards
> with Interactivity, Sharing, Native Excel Exports, App Integration & more
> Get technology previously reserved for billion-dollar corporations, FREE
> http://pubads.g.doubleclick.net/gampad/clk?id=157005751&iu=/4140/ostg.clktrk
> _______________________________________________
> QuantLib-users mailing list
> [hidden email]
> https://lists.sourceforge.net/lists/listinfo/quantlib-users

------------------------------------------------------------------------------
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration & more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=157005751&iu=/4140/ostg.clktrk
_______________________________________________
QuantLib-users mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/quantlib-users
dom
Reply | Threaded
Open this post in threaded view
|

Re: Building Quantlib - Time Taken?

dom
haha.. Thanks.
Well, maybe it's my machine.
It is actually building, I can see that the examples are being built so it can't take too much longer.  6 hours now.
dom
Reply | Threaded
Open this post in threaded view
|

Re: Building Quantlib - Time Taken?

dom
It just finished.. It took 6 hours.  Wow..
Reply | Threaded
Open this post in threaded view
|

Re: Building Quantlib - Time Taken?

igitur
In reply to this post by dom
What build chain are you using? In Visual Studio the object files should be created by parallel processes. E.g. I have a 4-core machine, so 4 compiler process will be running at all times until all objects are created. Then one linker process links them all.

Obviously, if, for some reason, only one compile process runs at a time, the build will take much longer.

Francois Botha

On 30 November 2014 at 15:16, dom <[hidden email]> wrote:
I am in the process of building Quantlib and the build process has been
running for 5 hours now on a P4, 2Gig Ramm Pentium, Windows XP (Win32).

Should it be taking this long.  I'm just starting to wonder if I will be
here waiting this time tomorrow



--
View this message in context: http://quantlib.10058.n7.nabble.com/Building-Quantlib-Time-Taken-tp16087.html
Sent from the quantlib-users mailing list archive at Nabble.com.

------------------------------------------------------------------------------
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration & more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=157005751&iu=/4140/ostg.clktrk
_______________________________________________
QuantLib-users mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/quantlib-users


------------------------------------------------------------------------------
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration & more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=157005751&iu=/4140/ostg.clktrk
_______________________________________________
QuantLib-users mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/quantlib-users
dom
Reply | Threaded
Open this post in threaded view
|

Re: Building Quantlib - Time Taken?

dom
I'm using MinGW 3.82.9 .  Maybe that's the reason.
Reply | Threaded
Open this post in threaded view
|

Re: Building Quantlib - Time Taken?

Luigi Ballabio
Are you using Dev-C++ or building from the command line? If the latter, running, for instance,

    make -j 4

will build the library in parallel on 4 cores.

Luigi


On Mon, Dec 1, 2014 at 12:09 PM, dom <[hidden email]> wrote:
I'm using MinGW 3.82.9 .  Maybe that's the reason.



--
View this message in context: http://quantlib.10058.n7.nabble.com/Building-Quantlib-Time-Taken-tp16087p16092.html
Sent from the quantlib-users mailing list archive at Nabble.com.

------------------------------------------------------------------------------
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration & more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=157005751&iu=/4140/ostg.clktrk
_______________________________________________
QuantLib-users mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/quantlib-users



--

------------------------------------------------------------------------------
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration & more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=157005751&iu=/4140/ostg.clktrk
_______________________________________________
QuantLib-users mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/quantlib-users
dom
Reply | Threaded
Open this post in threaded view
|

Re: Building Quantlib - Time Taken?

dom
This post was updated on .
That's interesting.  Thanks.
It's all done now but I'll remember that one for the future.
I used the command line.