[kicad] Re: Question on compilation/linking

2024-05-09 Thread 'Stefan Weber' via KiCad Developers
I imagine on master branch, looks like this commit https://gitlab.com/kicad/code/kicad/-/commit/f87bd91d61ca31decc83509bc569322d39b87423 huber...@gmail.com schrieb am Donnerstag, 9. Mai 2024 um 05:29:41 UTC+2: > Thanks Mark, where can I find this modification ? > > Le mardi 7 mai 2024 à

[kicad] Re: Question on compilation/linking

2024-05-08 Thread Hubert Bonnisseur-De-La-Bathe
Thanks Mark, where can I find this modification ? Le mardi 7 mai 2024 à 21:38:46 UTC-4, mark@gmail.com a écrit : > 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

[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