Realsense SDK2配置流程参考博文:https://blog.csdn.net/weixin_44024460/article/details/89320469
关于libcurl的报错:
fatal: unable to access 'https://github.com/curl/curl.git/': GnuTLS recv error (-110): The TLS connection was non-properly terminated.
解决方法:
参考博文:https://blog.csdn.net/gbz3300255/article/details/97103621/
root模式下打开librealsene/Cmake/external_libcurl.cmake
将第20行的内容:
GIT_REPOSITORY "https://github.com/curl/curl.git"
改为:
GIT_REPOSITORY "git://github.com/curl/curl.git"
保存external_libcurl.cmake 文件后退出root模式,转到build文件夹继续make即可。