-
DESCLAIMER: that we don't use make to build libraries and issue is likely related to our setup. Trying to understand the build configuration of the library. My understanding that Could assist with how it works? Or db-lib and ct-lib should never be linked by one application? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
They are not designed to be built together. They provide the same database access, you should pick one. And code is designed to be packaged in shared object not all in a single executable/library. So if you compile correctly you could load them both without symbols clash. |
Beta Was this translation helpful? Give feedback.
They are not designed to be built together. They provide the same database access, you should pick one. And code is designed to be packaged in shared object not all in a single executable/library. So if you compile correctly you could load them both without symbols clash.