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
Actually AmigaOS4 supports shared objects .so, but cmake doesn't allow to use SHARED option with ADD_LIBRARY, falling back to a STATIC library.
This is the warning message when using ADD_LIBRARY( SHARED ...)
CMake Warning (dev) at CMakeLists.txt:25 (ADD_LIBRARY):
ADD_LIBRARY called with SHARED option but the target platform does not
support dynamic linking. Building a STATIC library instead. This may lead
to problems.
This warning is for project developers. Use -Wno-dev to suppress it.
The text was updated successfully, but these errors were encountered:
Actually AmigaOS4 supports shared objects .so, but cmake doesn't allow to use SHARED option with ADD_LIBRARY, falling back to a STATIC library.
This is the warning message when using ADD_LIBRARY( SHARED ...)
The text was updated successfully, but these errors were encountered: