[kicad] Re: Question on compilation/linking

2024-05-07 Thread Mark Roszko
You were trying to use libeval which lived in `common` inside common.cpp which lives in `kicommon` `common` -> static library, depends on kicommon `kicommon` -> shared library, cannot depend on common So that's just invalid. Yea theres two libraries, they are slowly being moved to kicommon as

Re: [kicad] How to config ccache for kicad under windows

2024-05-07 Thread Liang Jia
Thanks for your quick fix. On Wed, 8 May 2024 at 08:30, Mark Roszko wrote: > I fixed up the kicad cmakelist to be correct. The ccache and distcc logic > was pretty old and dated. > > You just need to have ccache on your PATH and you should not need any of > your custom changes in theory now

Re: [kicad] How to config ccache for kicad under windows

2024-05-07 Thread Mark Roszko
I fixed up the kicad cmakelist to be correct. The ccache and distcc logic was pretty old and dated. You just need to have ccache on your PATH and you should not need any of your custom changes in theory now besides setting USE_CCACHE. On Tue, May 7, 2024 at 3:30 AM Liang Jia wrote: > Hi All, >

[kicad] Question on compilation/linking

2024-05-07 Thread Hubert Bonnisseur-De-La-Bathe
Hey guys, thanks for welcoming me in this group. I don't know if it's the right place to ask this question, let me know if another place would suit better. I was trying to work on integrating math evaluation in variable substitution brackets in eeschema and pcbnew. I dove into the code and

[kicad] How to config ccache for kicad under windows

2024-05-07 Thread Liang Jia
Hi All, I'm trying to speed up kicad compile time with ccache under windows. I made a huge step with it, so I want to share my setting to the community. Before use ccache: the compile time in my env is 20~ minutes, After use ccache: the compile time reduces to 3~ minutes. Background: There are