Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. What do you do while building?

What do you do while building?

Scheduled Pinned Locked Moved The Lounge
question
56 Posts 31 Posters 1 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • J John M Drescher

    For my current project, I already had 4GB of RAM but still 30 minute+ builds. The biggest problem is the hard drive would not keep up with my dual core processor so the cores were being utilized less than 25% during parts of the build. After several optimizations (build process, code, hardware, OS) all is well (cores are being utilized 100%) and it usually takes less than 10 minutes for an entire rebuild.

    John

    D Offline
    D Offline
    Dan Neely
    wrote on last edited by
    #31

    ouch. Dunno how long you spent tweaking it, but if you were that IO limited a ramdisk to hold temp files probably would've been a really fast payoff.

    The European Way of War: Blow your own continent up. The American Way of War: Go over and help them.

    J 2 Replies Last reply
    0
    • D Dan Neely

      ouch. Dunno how long you spent tweaking it, but if you were that IO limited a ramdisk to hold temp files probably would've been a really fast payoff.

      The European Way of War: Blow your own continent up. The American Way of War: Go over and help them.

      J Offline
      J Offline
      John M Drescher
      wrote on last edited by
      #32

      Before I got the velociraptor, I thought of that and also a SSD. The biggest problem was what to put on the ram disk. The source would fit easily on a RAM disk but if I would put the build trees for the entire project including its library dependencies (with full source) this takes over 20GB when all 3 builds are generated (debug, release, relwithdebuginfo).

      John

      D 1 Reply Last reply
      0
      • D Dan Neely

        ouch. Dunno how long you spent tweaking it, but if you were that IO limited a ramdisk to hold temp files probably would've been a really fast payoff.

        The European Way of War: Blow your own continent up. The American Way of War: Go over and help them.

        J Offline
        J Offline
        John M Drescher
        wrote on last edited by
        #33

        dan neely wrote:

        Dunno how long you spent tweaking it

        A few days for the OS and hard drive change. One problem was I was behind a deadline so I did not have time to optimize. After I delivered a working application (not fully complete) I was able to fix the build issues. One part of this was moving from XP to XP64. I did that when I added the velociraptor. I also doubled the ram to 8GB. The other tweaks to the build process happened before the hard drive / OS update.

        John

        1 Reply Last reply
        0
        • J John M Drescher

          Before I got the velociraptor, I thought of that and also a SSD. The biggest problem was what to put on the ram disk. The source would fit easily on a RAM disk but if I would put the build trees for the entire project including its library dependencies (with full source) this takes over 20GB when all 3 builds are generated (debug, release, relwithdebuginfo).

          John

          D Offline
          D Offline
          Dan Neely
          wrote on last edited by
          #34

          John M. Drescher wrote:

          if I would put the build trees for the entire project including its library dependencies (with full source) this takes over 20GB when all 3 builds are generated (debug, release, relwithdebuginfo).

          :omg: :omg: How big is your app?! One of mine (~20k LOC in C#) takes <40MB of diskspace for source/debug/release files combined. EXEs+DLLs total under meg for either build. With 12/16gb of ram I'd see if I could configure it to only load the source and build being compiled at the time. With only 8GB I'm not sure it's be feasible unless a lot of the temp files could safely be disposed in mid build (and you could use an event to do so).

          The European Way of War: Blow your own continent up. The American Way of War: Go over and help them.

          J 1 Reply Last reply
          0
          • D Dan Neely

            John M. Drescher wrote:

            if I would put the build trees for the entire project including its library dependencies (with full source) this takes over 20GB when all 3 builds are generated (debug, release, relwithdebuginfo).

            :omg: :omg: How big is your app?! One of mine (~20k LOC in C#) takes <40MB of diskspace for source/debug/release files combined. EXEs+DLLs total under meg for either build. With 12/16gb of ram I'd see if I could configure it to only load the source and build being compiled at the time. With only 8GB I'm not sure it's be feasible unless a lot of the temp files could safely be disposed in mid build (and you could use an event to do so).

            The European Way of War: Blow your own continent up. The American Way of War: Go over and help them.

            J Offline
            J Offline
            John M Drescher
            wrote on last edited by
            #35

            dan neely wrote:

            How big is your app?! One of mine (~20k LOC in C#) takes <40MB of diskspace for source/debug/release files combined. EXEs+DLLs total under meg for either build.

            The main application (with 16 projects) and one external supporting library that I have written are about 75K lines of Qt code together. The rest are 4 libraries that were developed in-house by other members of my team. These are 5 to 20 K lines each. And finally there are 3 large open source libraries (Qt + ITK + VTK) that are under constant development. Each of these 3 libraries are over 500K lines of code. So a rough estimate of the code is 1.8 million lines. I do not rebuild the 3 libraries often so this is not part of the time to build however I may have to build the 5 external libraries daily.

            John

            D 1 Reply Last reply
            0
            • J Jacquers

              Thanks! (For some reason the hamsters didn't do their usual magic when I pasted the link)

              M Offline
              M Offline
              Mustafa Ismail Mustafa
              wrote on last edited by
              #36

              I have to thank you for Vector-TD. I'm stuck at level 46, that thing can't be beat past that!

              If the post was helpful, please vote, eh! Current activities: Book: Devils by Fyodor Dostoyevsky Project: Hospital Automation, final stage Learning: Image analysis, LINQ Now and forever, defiant to the end. What is Multiple Sclerosis[^]?

              J 1 Reply Last reply
              0
              • J John M Drescher

                dan neely wrote:

                How big is your app?! One of mine (~20k LOC in C#) takes <40MB of diskspace for source/debug/release files combined. EXEs+DLLs total under meg for either build.

                The main application (with 16 projects) and one external supporting library that I have written are about 75K lines of Qt code together. The rest are 4 libraries that were developed in-house by other members of my team. These are 5 to 20 K lines each. And finally there are 3 large open source libraries (Qt + ITK + VTK) that are under constant development. Each of these 3 libraries are over 500K lines of code. So a rough estimate of the code is 1.8 million lines. I do not rebuild the 3 libraries often so this is not part of the time to build however I may have to build the 5 external libraries daily.

                John

                D Offline
                D Offline
                Dan Neely
                wrote on last edited by
                #37

                John M. Drescher wrote:

                5 external libraries daily.

                Is this a typo, or did you neglect to mention something? Your build time/sizes are still huge compared to anything I've done in C#. Do you know if it's just nonlinear scaling or something C++ish to blame. For diskspace it's a ~5x factor (2MB/kloc vs 11MB/kloc); For build times unless there're compiler errors mine builds in 7-40sec for a full rebuild (dunno why the variability; but it seems to go away if I collapse the number of projects down significantly) for a 2-18x difference (30-170kloc/minute vs 9.5-15.5kloc/minute (excluding the 3 big libaries)).

                The European Way of War: Blow your own continent up. The American Way of War: Go over and help them.

                J A 3 Replies Last reply
                0
                • D Dan Neely

                  John M. Drescher wrote:

                  5 external libraries daily.

                  Is this a typo, or did you neglect to mention something? Your build time/sizes are still huge compared to anything I've done in C#. Do you know if it's just nonlinear scaling or something C++ish to blame. For diskspace it's a ~5x factor (2MB/kloc vs 11MB/kloc); For build times unless there're compiler errors mine builds in 7-40sec for a full rebuild (dunno why the variability; but it seems to go away if I collapse the number of projects down significantly) for a 2-18x difference (30-170kloc/minute vs 9.5-15.5kloc/minute (excluding the 3 big libaries)).

                  The European Way of War: Blow your own continent up. The American Way of War: Go over and help them.

                  J Offline
                  J Offline
                  John M Drescher
                  wrote on last edited by
                  #38

                  dan neely wrote:

                  Is this a typo, or did you neglect to mention something?

                  More like a bad choice of words. I mean that 5 libraries developed in-house (4 of these from others and my library) are separate workspaces from the workspace that builds the main application.

                  dan neely wrote:

                  just nonlinear scaling or something C++ish to blame.

                  templates are part of the blame for compile times. ITK is a template library. So part of the problem is if you need to #include one of the headers for a template in your header file and that template #include also includes a dozen other template headers many files need to be recompiled for a single change in your header file.

                  John

                  1 Reply Last reply
                  0
                  • D Dan Neely

                    John M. Drescher wrote:

                    5 external libraries daily.

                    Is this a typo, or did you neglect to mention something? Your build time/sizes are still huge compared to anything I've done in C#. Do you know if it's just nonlinear scaling or something C++ish to blame. For diskspace it's a ~5x factor (2MB/kloc vs 11MB/kloc); For build times unless there're compiler errors mine builds in 7-40sec for a full rebuild (dunno why the variability; but it seems to go away if I collapse the number of projects down significantly) for a 2-18x difference (30-170kloc/minute vs 9.5-15.5kloc/minute (excluding the 3 big libaries)).

                    The European Way of War: Blow your own continent up. The American Way of War: Go over and help them.

                    J Offline
                    J Offline
                    John M Drescher
                    wrote on last edited by
                    #39

                    dan neely wrote:

                    For diskspace it's a ~5x factor (2MB/kloc vs 11MB/kloc);

                    I attribute this to .pdb, .pch, ilk ... files and the number of project files. My .pch files are 15 to 25MB each and the main workspace currently has 21 of them. I know the large open source libraries are much worse.

                    John

                    1 Reply Last reply
                    0
                    • B bertvan

                      I'm working on a project with a long build duration. How do you normally kill time when you return with your coffee and the build is still busy?

                      S Offline
                      S Offline
                      Steve Mayfield
                      wrote on last edited by
                      #40

                      concentrate on not hitting my thumb with the hammer :laugh:

                      Steve _________________ I C(++) therefore I am

                      1 Reply Last reply
                      0
                      • B bertvan

                        I'm working on a project with a long build duration. How do you normally kill time when you return with your coffee and the build is still busy?

                        J Offline
                        J Offline
                        Jwalant Natvarlal Soneji
                        wrote on last edited by
                        #41

                        Goto Tasks in my Outlook 2007 and try to complete tasks :)

                        Jwalant Natvarlal Soneji, BE IT, India

                        1 Reply Last reply
                        0
                        • M Mustafa Ismail Mustafa

                          I have to thank you for Vector-TD. I'm stuck at level 46, that thing can't be beat past that!

                          If the post was helpful, please vote, eh! Current activities: Book: Devils by Fyodor Dostoyevsky Project: Hospital Automation, final stage Learning: Image analysis, LINQ Now and forever, defiant to the end. What is Multiple Sclerosis[^]?

                          J Offline
                          J Offline
                          Jacquers
                          wrote on last edited by
                          #42

                          Hehe, I don't think I have finished Vector TD either! I did notice recently that you can click / right-click on existing towers and sell them, so I'll try again sometime to beat the game.

                          1 Reply Last reply
                          0
                          • D Dan Neely

                            John M. Drescher wrote:

                            5 external libraries daily.

                            Is this a typo, or did you neglect to mention something? Your build time/sizes are still huge compared to anything I've done in C#. Do you know if it's just nonlinear scaling or something C++ish to blame. For diskspace it's a ~5x factor (2MB/kloc vs 11MB/kloc); For build times unless there're compiler errors mine builds in 7-40sec for a full rebuild (dunno why the variability; but it seems to go away if I collapse the number of projects down significantly) for a 2-18x difference (30-170kloc/minute vs 9.5-15.5kloc/minute (excluding the 3 big libaries)).

                            The European Way of War: Blow your own continent up. The American Way of War: Go over and help them.

                            A Offline
                            A Offline
                            Anna Jayne Metcalfe
                            wrote on last edited by
                            #43

                            Large projects are pretty common in C++. Visual Lint is something like 230kLOC in 24 projects now, and takes about 10 mins to build on my W2k8 server box. You need about 5GB free for the binaries and intermediates (debug, release and retail configurations). FWIW the higher build times compared to C# are almost certainly largely due to the use of include files rather than binary imports (like the C# "using" keyword) in the language. There is a proposal to add a binary module linking capability to the language which will probably address this to an extent - but unfortunately it won't be in the next C++ Standard. If you knock out the system headers C++ implementation files compile very quickly. Then again, C++ is a far more complex language than C# (and compiles direct to native code rather than the rather idealised IL, which has an impact on build time too).

                            Anna :rose: Having a bad bug day? Tech Blog | Anna's Place | Tears and Laughter "If mushy peas are the food of the devil, the stotty cake is the frisbee of God"

                            1 Reply Last reply
                            0
                            • B bertvan

                              I'm working on a project with a long build duration. How do you normally kill time when you return with your coffee and the build is still busy?

                              U Offline
                              U Offline
                              urbane tiger
                              wrote on last edited by
                              #44

                              Preferred Action : queue another build and go for a coffee or 2 to read book. Current read : The Buddha & Dr Fuhrer by Charles Allen. Nothing to do with Hitler, digging up Buddhist relics in 19th century India, good read. Normal Reality : arrive late for yet another decision free, where the f... are we, politically charged, rolling eyes, wink-wink, nudge-nudge, meeting, where I have no role to play, and where they won't even let me take the minutes - or read my book; biscuits are free, coffee's awful.

                              Spike Mulligan is at WW2 Conscription intake centre. Officer asks "Where you born Mulligan". "India, sir", Mulligan briskly replies. "Which part" asks the officer. To which Spike replies "All of me, sir".

                              1 Reply Last reply
                              0
                              • S Stuart Dootson

                                bertvan wrote:

                                How do you normally kill time when you return with your coffee and the build is still busy?

                                Working out how to speed up the build... Cursing the numpty who didn't distribute their code in files so as to minimise build times... Then I get bored, start surfing t'Internet and come back later to find I've wasted 20 minutes after the build had finished...

                                Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p

                                M Offline
                                M Offline
                                Mohamed Meligy
                                wrote on last edited by
                                #45

                                If this is a website using Visual Studio , then the key is to convert it to Web Application Model. If you are not clear on what I mean, check this: http://weblogs.asp.net/meligy/archive/2008/08/03/converting-vs-2008-website-to-web-application.aspx[^] Regards, -- Mohamed Meligy Information Analyst (.Net Technologies) – Applications Delivery - TDG Injazat Data Systems P.O. Box: 8230 Abu Dhabi, UAE. Phone: +971 2 6992700 Direct: +971 2 4045385 Mobile: +971 50 2623624 E-mail: eng.meligy@gmail.com Weblog: http://weblogs.asp.net/meligy

                                S 1 Reply Last reply
                                0
                                • M Mohamed Meligy

                                  If this is a website using Visual Studio , then the key is to convert it to Web Application Model. If you are not clear on what I mean, check this: http://weblogs.asp.net/meligy/archive/2008/08/03/converting-vs-2008-website-to-web-application.aspx[^] Regards, -- Mohamed Meligy Information Analyst (.Net Technologies) – Applications Delivery - TDG Injazat Data Systems P.O. Box: 8230 Abu Dhabi, UAE. Phone: +971 2 6992700 Direct: +971 2 4045385 Mobile: +971 50 2623624 E-mail: eng.meligy@gmail.com Weblog: http://weblogs.asp.net/meligy

                                  S Offline
                                  S Offline
                                  Stuart Dootson
                                  wrote on last edited by
                                  #46

                                  Mohamed Meligy wrote:

                                  If this is a website using Visual Studio , then the key is to convert it to Web Application Model.

                                  :-) When I do build a website, I use Python+one of the many Python libraries for building websites (Turbogears is a current favourite) - no building involved, really. No, the building I'm talking about is many, many, many lines of C++, or (occasionally) Ada or Fortran, often using Makefiles rather than an IDE.

                                  Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p

                                  1 Reply Last reply
                                  0
                                  • P PIEBALDconsult

                                    I'd rather grab a co-workwer and talk to a coffee.

                                    J Offline
                                    J Offline
                                    JasonD_S
                                    wrote on last edited by
                                    #47

                                    If only we weren't engineers, maybe this would be viable. Well, for those of us that are straight. :P

                                    1 Reply Last reply
                                    0
                                    • B bertvan

                                      I'm working on a project with a long build duration. How do you normally kill time when you return with your coffee and the build is still busy?

                                      B Offline
                                      B Offline
                                      Battlehammer
                                      wrote on last edited by
                                      #48

                                      I thought that's why The Code Project exists.

                                      1 Reply Last reply
                                      0
                                      • B bertvan

                                        I'm working on a project with a long build duration. How do you normally kill time when you return with your coffee and the build is still busy?

                                        J Offline
                                        J Offline
                                        Jordan Marr
                                        wrote on last edited by
                                        #49

                                        What kind of software are you writing that takes so long to build? :omg:

                                        1 Reply Last reply
                                        0
                                        • B bertvan

                                          I'm working on a project with a long build duration. How do you normally kill time when you return with your coffee and the build is still busy?

                                          J Offline
                                          J Offline
                                          Jim SS
                                          wrote on last edited by
                                          #50

                                          I used to bring library books for when I was cross-compiling CMS-2 code on a VAX for AN/UYK-20 or 44 Navy computers. That was before the internet. :sigh: Now if I get a chance between builds (rarely) it's XKCD or CP.

                                          SS => Qualified in Submarines "We sleep soundly in our beds because rough men stand ready in the night to visit violence on those who would do us harm". Winston Churchill "Real programmers can write FORTRAN in any language". Unknown

                                          1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups