in the CMake files. If you set BUILD_SHARED_LIBS, then it will attempt to build them as shared; this fails due to undefined library dependencies. I looked at adding them, but found there were some circular depe
>> in the CMake files. If you set BUILD_SHARED_LIBS, then it will attempt to >> build them as shared; this fails due to undefined library dependencies. I >> looked at adding them, but found there were some circular dependencies >> which made it a bit messy. Also, it doesn't seem...
Make CMake testing work even with BUILD_SHARED_LIBS=YES#1463 Open dabrahams opened this issue May 10, 2024· 0 comments CommentsCollaborator dabrahams commented May 10, 2024 Shared libs are currently disabled; someone needs to diagnose why that hack is needed....
Describe the bug I am getting a CMake error when trying to use the 1.11 line of the SDK. I did not get this error when using both 1.9 and 1.10. Expected Behavior Expected behaviour is no CMake error. Current Behavior The error appears du...
> CMake anyway, so I'm seeing what I can do to help move that forward. I'd > like to have the LLVM changes done by the 3.7 release if possible. > My life would be somewhat improved as well if we could rely upon the CMake ...
CMake anyway, so I'm seeing what I can do to help move that forward. I'd like to have the LLVM changes done by the 3.7 release if possible. Cheers, Andrew > Vince > On Jun 1, 2015 1:16 AM, "Andrew Wilkins" <axw...@gmail.com> wrote: ...
in 54e25a9, we enabled Seastar to build shared and static libraries in a single pass. but we failed to set POSITION_INDEPENDENT_CODE property for the targets if BUILD_SHARED_LIBS is not set. this b...
* Add a CMake option to disable shared libs This option is useful to support platforms that do not support dynamic libraries and `dlopen`.Loading branch information tobim authored Oct 21, 2024 1 parent b1488cd commit 7402ed9 Showing 3 changed files with 12 additions and 2 deletions. Wh...
> Many of the libraries in LLDB are not specified as being shared or static > in the CMake files. If you set BUILD_SHARED_LIBS, then it will attempt to > build them as shared; this fails due to undefined library dependencies. I ...
In windows this cmake language can be used to build both static and dyn libs: add_library(MyLib SHARED source1.c source2.c) add_library(MyLibStatic STATIC source1.c source2.c) set_target_properties(MyLibStatic PROPERTIES OUTPUT_NAME MyLib) ...