Re: Accelerate the 'configure' script

2022-04-28 Thread Markus Elfring
> Things I can think of: > > - 'install' can be assumed to be OK. > - 'mkdir' can be assumed to be OK. > - I am always using GNU Make, so all 3 checks around make are dispensable. > - I am always using GCC, so checking whether it accepts -g etc. is not > necessary. > > Is there any article or bl

Re: Accelerate the 'configure' script

2022-04-27 Thread Demi Marie Obenour
On 4/27/22 13:04, Alex Ameen wrote: > You could setup a `config.site` file to share across projects. This is > where I imagine you will get the most mileage. > > But it sounds like you can probably recycle `config.cache` for a single > pipeline assuming you aren't changing the actual configure scr

Re: Accelerate the 'configure' script

2022-04-27 Thread Alex Ameen
You could setup a `config.site` file to share across projects. This is where I imagine you will get the most mileage. But it sounds like you can probably recycle `config.cache` for a single pipeline assuming you aren't changing the actual configure script and external inputs. I saw your other mes