You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Today, libdlt exposes all of its symbols, which can lead to symbol conflicts.
In fact, this is what brought me here. I was lucky my linker discovered some of such conflicts (many linkers won't). There is high risk code will silently break in unobvious ways and cause major debugging pain. This is similar to C's ODR (one definition rule) which causes UB when violated - at inter-project scale (exe + shared libs)!
To reduce the "problem surface" libdlt should not contribute symbols like "buffer" to the host applications but only the public API.
I would like to contribute a patch that fixes the situation in the following way, if the community agrees (please comment).
to have a header generated which offers the DLT_EXPORT macro to put in front of all public APIs like
DLT_EXPORTDltReturnValuedlt_init();
It appears that GenerateExportHeader was targetting only CXX apps before CMake 3.12.
Would it be okay to up the minimum CMake 3.12? According ubuntu.com mirrors this version is available for Ubuntu 16.04.
The text was updated successfully, but these errors were encountered:
Today, libdlt exposes all of its symbols, which can lead to symbol conflicts.
In fact, this is what brought me here. I was lucky my linker discovered some of such conflicts (many linkers won't). There is high risk code will silently break in unobvious ways and cause major debugging pain.
This is similar to C's ODR (one definition rule) which causes UB when violated - at inter-project scale (exe + shared libs)!
To reduce the "problem surface" libdlt should not contribute symbols like "buffer" to the host applications but only the public API.
I would like to contribute a patch that fixes the situation in the following way, if the community agrees (please comment).
to stop exporting all symbols and utilize
include(GenerateExportHeader) generate_export_header(dlt)
to have a header generated which offers the
DLT_EXPORT
macro to put in front of all public APIs likeIt appears that
GenerateExportHeader
was targetting only CXX apps before CMake 3.12.Would it be okay to up the minimum CMake 3.12? According ubuntu.com mirrors this version is available for Ubuntu 16.04.
The text was updated successfully, but these errors were encountered: