Accelerate the 'configure' script

2022-04-27 Thread R. Diez
Hi all: I have this cross-compiling Autoconf project: https://github.com/rdiez/JtagDue/tree/master/Project I am not using Autoconf for portability, but mainly for handling C/C++ dependencies, so that not everything is rebuilt when I change one source file. This is just an example project, I h

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

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