这是对以下内容的跟进:
根据当地的回答我又试了一次:
$ git clone --recurse-submodules https://github.com/aws/aws-sdk-cpp.git
$ cd aws-sdk-cpp
$ mkdir build
$ cmake .. -DBUILD_ONLY=core -DCMAKE_BUILD_TYPE=RelWithDebInfo -DBUILD_SHARED_LIBS=OFF -DCMAKE_INSTALL_PREFIX=~/install
$ make install -i
我被迫使用'-i'
,因为至少有一个测试失败(似乎'make test'
规则在'make all'
内)。
然后从我最喜欢项目:
% cat ../CMakeLists.txt
cmake_minimum_required(VERSION 3.2)
project(lambda-example)
set (CMAKE_CXX_STANDARD 11)
# Locate the aws sdk for c++ package.
find_package(AWSSDK REQUIRED COMPONENTS lambda)
# The executables to build.
set(EXAMPLES "")
list(APPEND EXAMPLES "main")
# The executables to build
foreach(EXAMPLE IN LISTS EXAMPLES)
add_executable(${EXAMPLE} ${EXAMPLE}.cpp)
target_link_libraries(${EXAMPLE} ${AWSSDK_LINK_LIBRARIES})
endforeach()
我得到:
% cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH=~/install
-- The C compiler identification is GNU 8.3.0
-- The CXX compiler identification is GNU 8.3.0
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Found AWS SDK for C++, Version: 1.9.18, Install Root:/home/mathieu/install, Platform Prefix:, Platform Dependent Libraries: pthread;crypto;ssl;z;curl
-- Components specified for AWSSDK: lambda, application will be depending on libs: aws-cpp-sdk-lambda;aws-cpp-sdk-core;aws-crt-cpp;aws-c-auth;aws-c-cal;aws-c-common;aws-c-compression;aws-c-event-stream;aws-c-http;aws-c-io;aws-c-mqtt;aws-c-s3;aws-checksums;pthread;crypto;ssl;z;curl
-- Try finding aws-cpp-sdk-core
-- Looking for pthread.h
-- Looking for pthread.h - found
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed
-- Check if compiler accepts -pthread
-- Check if compiler accepts -pthread - yes
-- Found Threads: TRUE
-- Found LibCrypto: /usr/lib/x86_64-linux-gnu/libcrypto.so
-- LibCrypto Include Dir: /usr/include
-- LibCrypto Shared Lib: /usr/lib/x86_64-linux-gnu/libcrypto.so
-- LibCrypto Static Lib: /usr/lib/x86_64-linux-gnu/libcrypto.so
CMake Error at /usr/share/cmake-3.16/Modules/FindPackageHandleStandardArgs.cmake:146 (message):
Could NOT find LibCrypto (missing: LibCrypto_LIBRARY LibCrypto_INCLUDE_DIR)
Call Stack (most recent call first):
/usr/share/cmake-3.16/Modules/FindPackageHandleStandardArgs.cmake:393 (_FPHSA_FAILURE_MESSAGE)
/home/mathieu/install/lib/s2n/cmake/modules/FindLibCrypto.cmake:61 (find_package_handle_standard_args)
/usr/share/cmake-3.16/Modules/CMakeFindDependencyMacro.cmake:47 (find_package)
/home/mathieu/install/lib/aws-c-cal/cmake/aws-c-cal-config.cmake:7 (find_dependency)
/usr/share/cmake-3.16/Modules/CMakeFindDependencyMacro.cmake:47 (find_package)
/home/mathieu/install/lib/aws-c-io/cmake/aws-c-io-config.cmake:8 (find_dependency)
/usr/share/cmake-3.16/Modules/CMakeFindDependencyMacro.cmake:47 (find_package)
/home/mathieu/install/lib/aws-c-http/cmake/aws-c-http-config.cmake:3 (find_dependency)
/usr/share/cmake-3.16/Modules/CMakeFindDependencyMacro.cmake:47 (find_package)
/home/mathieu/install/lib/aws-crt-cpp/cmake/aws-crt-cpp-config.cmake:3 (find_dependency)
/usr/share/cmake-3.16/Modules/CMakeFindDependencyMacro.cmake:47 (find_package)
/home/mathieu/install/lib/cmake/aws-cpp-sdk-core/aws-cpp-sdk-core-config.cmake:2 (find_dependency)
/home/mathieu/install/lib/cmake/AWSSDK/AWSSDKConfig.cmake:305 (find_package)
CMakeLists.txt:6 (find_package)
-- Configuring incomplete, errors occurred!
See also "/home/mathieu/workspace/junk/bin/CMakeFiles/CMakeOutput.log".
See also "/home/mathieu/workspace/junk/bin/CMakeFiles/CMakeError.log".
上述内容基于以下阅读:
- Building the SDK from source on EC2
- How to run any programming language on AWS Lambda: Custom Runtimes.
- C++ Code Samples for AWS Lambda
错误消息似乎自相矛盾:
-- Found LibCrypto: /usr/lib/x86_64-linux-gnu/libcrypto.so
[...]
CMake Error at /usr/share/cmake-3.16/Modules/FindPackageHandleStandardArgs.cmake:146 (message):
Could NOT find LibCrypto (missing: LibCrypto_LIBRARY LibCrypto_INCLUDE_DIR)
我错过了什么?
3条答案
按热度按时间7lrncoxx1#
我遇到的问题与您描述的完全相同。
使用AWS SDK for C++版本1.9.27(从标记 checkout )时,
我在CentOS7环境下构建应用程序的唯一方法是下一个cmake命令:
正如你所注意到的,有一堆关于
LibCrypto Include Dir: /usr/include
的奇怪的输出行。我想在AWS SDK cmake构建配置中有一个关于使用cmake缓存变量进行libcrypto的问题。在上面的配置命令之后,我可以成功地将make -j4
和make install
作为我的目标。我使用的cmake版本是
3.17.5
。GCC版本在上面的输出中。zqry0prt2#
您需要安装libcrypto、libssl和libcurl。
我已经通过运行以下命令在我的Ubuntu机器上解决了同样的问题。
sudo apt-get install libcurl4
sudo apt-get install libcurlpp-dev
sudo apt-get install libcrypto++-dev
请参阅:https://github.com/aws/aws-sdk-cpp#other-dependencies
noj0wjuj3#
您需要安装libssl-dev