Re: Caching build objects: Waf and ccache

2021-10-10 Thread Thomas Nagy
Are you looking for general instructions or are you trying to optimize the rtems build? To wrap the compiler using ccache, override the environment variables during the configuration: CXX='ccache gxx' CC='ccache gcc' waf configure The rtems manual does not advertise it, so it this may void

Re: Caching build objects: Waf and ccache

2021-10-05 Thread Stanislav Pankevich
Thanks for the answer. My comments below: On Tue, Oct 5, 2021 at 11:50 AM Sebastian Huber < sebastian.hu...@embedded-brains.de> wrote: > Hello Stanislav, > > On 05/10/2021 11:17, Stanislav Pankevich wrote: > > I have a very specific question about the Waf build system. I apologize > if > > I

Re: Caching build objects: Waf and ccache

2021-10-05 Thread Sebastian Huber
Hello Stanislav, On 05/10/2021 11:17, Stanislav Pankevich wrote: I have a very specific question about the Waf build system. I apologize if I missed this information somewhere in the documentation. From looking at ./waf --help it doesn't look like Waf would have a ccache-like functionality

Caching build objects: Waf and ccache

2021-10-05 Thread Stanislav Pankevich
Hello everyone, I have a very specific question about the Waf build system. I apologize if I missed this information somewhere in the documentation. >From looking at ./waf --help it doesn't look like Waf would have a ccache-like functionality built in. When using CMake build system, I am used