Re: [CMake] Memory usage and configuration time for large project

2018-05-08 Thread Malfettone, Kris
. -Kris From: CMake [mailto:cmake-boun...@cmake.org] On Behalf Of Isaiah Norton Sent: Friday, May 04, 2018 7:51 PM To: Patrick E Gartung <gart...@fnal.gov> Cc: cmake@cmake.org Subject: Re: [CMake] Memory usage and configuration time for large project As one ballpark datapoint: a "

Re: [CMake] Memory usage and configuration time for large project

2018-05-04 Thread Isaiah Norton
As one ballpark datapoint: a "superbuild" of 3D Slicer (slicer.org) has a similar object and library count: macbook-pro:s5nj inorton$ find ./ -name *.o | wc -l >14127 macbook-pro:s5nj inorton$ find ./ -name *.dylib -or -name *.so | wc -l > 2158 Based on a few quick tests, the aggregate

Re: [CMake] Memory usage and configuration time for large project

2018-05-04 Thread Patrick E Gartung
Just to be clear, the memory and time used are just to configure and generate the makefiles or Ninja file. The build itself can take several hours. On 4/30/18, 4:55 PM, "R0b0t1" wrote: On Mon, Apr 30, 2018 at 4:44 PM, Patrick E Gartung wrote: >

Re: [CMake] Memory usage and configuration time for large project

2018-04-30 Thread R0b0t1
On Mon, Apr 30, 2018 at 4:44 PM, Patrick E Gartung wrote: > Hi, > > We have a large c/c++/fortran project, CMSSW, that is built with a custom > tool, scram.  > > https://github.com/cms-sw/cmssw > > The project might move to a cmake based build in the future. The scripts to >

[CMake] Memory usage and configuration time for large project

2018-04-30 Thread Patrick E Gartung
Hi, We have a large c/c++/fortran project, CMSSW, that is built with a custom tool, scram.  https://github.com/cms-sw/cmssw The project might move to a cmake based build in the future. The scripts to convert to CmakeLists.tx has been written https://github.com/cms-sw/cmssw2cmake Tests