gpt4 book ai didi

centos - Centos 7 中的 CPP-REST-SDK

转载 作者:太空宇宙 更新时间:2023-11-03 17:15:35 32 4
gpt4 key购买 nike

我有一个 CentOS 7(EPEL-Repo 已注册)但我没有在 repos 中找到 CPP-REST(Debian 中的 libcpprest-dev)的软件包。

我需要从 vanilla 安装它还是 CentOS 中有软件包?

谢谢!

最佳答案

简答...

目前(2018-10-03)没有用于 cpprestsdk(Debian 中的 libcpprest-dev)的“官方”CentOS 7 软件包。

长答案(分享这个以防对任何人有帮助)...

您可以从源代码构建 cpprestsdk,但“如何为 Linux 构建”( https://github.com/Microsoft/cpprestsdk/wiki/How-to-build-for-Linux ) 的说明不包括 CentOS 或 RHEL(在撰写本文时,2018 年 10 月 3 日)。

在 CentOS 7 上构建 cpprestsdk 之前,您需要更新 boost(在撰写本文时,CentOS 7 存储库有 boost 1.53,但需要 1.54,最新的是 1.68)。您可以这样做来更新(以 boost 1.68 为例):

cd && wget https://dl.bintray.com/boostorg/release/1.68.0/source/boost_1_68_0.tar.gz
tar -xzvf boost_1_68_0.tar.gz
cd ~/boost_1_68_0
./bootstrap.sh --prefix=/opt/boost
sudo ./b2 install --prefix=/opt/boost --with=all

更新 boost 后,我​​能够像这样在 CentOS 7 上构建 cpprestsdk...

安装一些需要的工具/库:

sudo yum -y install git cmake3 openssl-devel gcc-c++ make

下载cpprestsdk工程:

git clone https://github.com/Microsoft/cpprestsdk.git casablanca

cpprestsdk 想要将警告视为错误。我不得不通过在 ~/casablanca/Release/CMakeLists.txt 中注释掉这一行来关闭它:

#set(WERROR ON CACHE BOOL "Treat Warnings as Errors.")

准备/构建 cpprestsdk 项目:

cd casablanca/Release
mkdir build.release && cd build.release
cmake3 .. -DCMAKE_BUILD_TYPE=Release -DBOOST_ROOT=/opt/boost
make

安装头文件和库

sudo make install

请注意,我调用的是 cmake3(不是 cmake)并且指定了 boost root;这与似乎为 Ubuntu(不是 CentOS 或 RHEL)编写和测试的官方说明不同。要使用 cpprestsdk 构建我的项目,我必须使用 ldconfig 来查找库路径。

关于centos - Centos 7 中的 CPP-REST-SDK,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49877907/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com