Advertisement
StoianIvanov

cmake build fails due to openssl 1.1.0 dep

Feb 18th, 2025
11
0
25 days
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.66 KB | Software | 0 0
  1. sdr@sdr-lt:~/Downloads/App SESDK_V2.0.0/ubuntu64/build$ cmake ..
  2. CMake Warning (dev) in CMakeLists.txt:
  3. No project() command is present. The top-level CMakeLists.txt file must
  4. contain a literal, direct call to the project() command. Add a line of
  5. code such as
  6.  
  7. project(ProjectName)
  8.  
  9. near the top of the file, but after cmake_minimum_required().
  10.  
  11. CMake is pretending there is a "project(Project)" command on the first
  12. line.
  13. This warning is for project developers. Use -Wno-dev to suppress it.
  14.  
  15. CMake Warning (dev) in CMakeLists.txt:
  16. cmake_minimum_required() should be called prior to this top-level project()
  17. call. Please see the cmake-commands(7) manual for usage documentation of
  18. both commands.
  19. This warning is for project developers. Use -Wno-dev to suppress it.
  20.  
  21. -- The C compiler identification is GNU 14.2.0
  22. -- The CXX compiler identification is GNU 14.2.0
  23. -- Detecting C compiler ABI info
  24. -- Detecting C compiler ABI info - done
  25. -- Check for working C compiler: /usr/bin/cc - skipped
  26. -- Detecting C compile features
  27. -- Detecting C compile features - done
  28. -- Detecting CXX compiler ABI info
  29. -- Detecting CXX compiler ABI info - done
  30. -- Check for working CXX compiler: /usr/bin/c++ - skipped
  31. -- Detecting CXX compile features
  32. -- Detecting CXX compile features - done
  33. CMake Deprecation Warning at CMakeLists.txt:3 (cmake_minimum_required):
  34. Compatibility with CMake < 3.5 will be removed from a future version of
  35. CMake.
  36.  
  37. Update the VERSION argument <min> value or use a ...<max> suffix to tell
  38. CMake that the project does not need compatibility with older versions.
  39.  
  40.  
  41. -- Configuring done (0.5s)
  42. -- Generating done (0.0s)
  43. -- Build files have been written to: /home/sdr/Downloads/App SESDK_V2.0.0/ubuntu64/build
  44. sdr@sdr-lt:~/Downloads/App SESDK_V2.0.0/ubuntu64/build$ make
  45. [ 33%] Building CXX object CMakeFiles/SELibDemo.dir/home/sdr/Downloads/App_SESDK_V2.0.0/JsonCpp/jsoncpp.cpp.o
  46. [ 66%] Building CXX object CMakeFiles/SELibDemo.dir/src/main.cpp.o
  47. [100%] Linking CXX executable "/home/sdr/Downloads/App SESDK_V2.0.0/ubuntu64/bin/SELibDemo"
  48. /usr/bin/ld: warning: libssl.so.1.1, needed by /home/sdr/Downloads/App SESDK_V2.0.0/ubuntu64/./bin/libIOTCAPIs.so, not found (try using -rpath or -rpath-link)
  49. /usr/bin/ld: warning: libcrypto.so.1.1, needed by /home/sdr/Downloads/App SESDK_V2.0.0/ubuntu64/./bin/libIOTCAPIs.so, not found (try using -rpath or -rpath-link)
  50. /usr/bin/ld: /home/sdr/Downloads/App SESDK_V2.0.0/ubuntu64/./bin/libIOTCAPIs.so: undefined reference to `DTLS_method@OPENSSL_1_1_0'
  51. /usr/bin/ld: /home/sdr/Downloads/App SESDK_V2.0.0/ubuntu64/./bin/libTUTKGlobalAPIs.so: undefined reference to `RSA_private_encrypt@OPENSSL_1_1_0'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement