gpt4 book ai didi

c++ - CLion 和 Crypto++ 库

转载 作者:太空狗 更新时间:2023-10-29 21:34:19 26 4
gpt4 key购买 nike

不久前,我开始在 Visual Studio 2015 中编写我的应用程序,在设置所有库依赖项时没有遇到任何问题。

现在,我决定转向 CLion。但是,我的应用程序依赖于 cryptopp 库,我需要将其链接到我的 CLion 项目中。

目前,我面临着大量的undefined reference错误

undefined reference to `CryptoPP::Integer::Integer(char const*)'
undefined reference to `CryptoPP::Integer::Integer(char const*)'
undefined reference to `CryptoPP::Integer::Integer(char const*)'
undefined reference to `CryptoPP::DH_Domain<CryptoPP::DL_GroupParameters_GFP_DefaultSafePrime, CryptoPP::EnumToType<CryptoPP::CofactorMultiplicationOption, 0> >::AccessGroupParameters()'
undefined reference to `CryptoPP::DH_Domain<CryptoPP::DL_GroupParameters_GFP_DefaultSafePrime, CryptoPP::EnumToType<CryptoPP::CofactorMultiplicationOption, 0> >::GetGroupParameters() const'
undefined reference to `CryptoPP::DH_Domain<CryptoPP::DL_GroupParameters_GFP_DefaultSafePrime, CryptoPP::EnumToType<CryptoPP::CofactorMultiplicationOption, 0> >::GetGroupParameters() const'
[..]

我确实在我的 CMakeLists 中设置了包含目录:

set(EXTERN_LIBS E:/dev/libs)

include_directories(${EXTERN_LIBS} ${EXTERN_LIBS}/include)
link_directories(${EXTERN_LIBS})

但是,我仍然无法让它工作。

我正在为我的项目使用 MinGW。以下是设置和版本的预览:

enter image description here

如何将 cryptopp 库正确添加到我在 CLion 中的项目中?

最佳答案

我认为我们可能已经在 Commit e4cef84883b2 解决了大部分 MinGW/C++11 问题.您应该从 Master 开始工作或执行 git pull,然后在 config.h : 65 中取消注释 CRYPTOPP_NO_CXX11 的定义| (左右):

// Define CRYPTOPP_NO_CXX11 to avoid C++11 related features shown at the
// end of this file. Some compilers and standard C++ headers advertise C++11
// but they are really just C++03 with some additional C++11 headers and
// non-conforming classes. You might also consider `-std=c++03` or
// `-std=gnu++03`, but they are required options when building the library
// and all programs. CRYPTOPP_NO_CXX11 is probably easier to manage but it may
// cause -Wterminate warnings under GCC. MSVC++ has a similar warning.
// Also see https://github.com/weidai11/cryptopp/issues/529
// #define CRYPTOPP_NO_CXX11 1

我认为问题是,您遇到了与 Windows 相关的问题及其缺乏适当的 C++11 支持,但您是间接获得这些问题。它们是间接的,因为 MinGW 和 GCC 位于顶部。 MinGW 和 GCC 不可能提供 C++11,因为底层平台不能。

我认为此时最好的选择是定义 CRYPTOPP_NO_CXX11。我不相信我们可以像在 Windows 上那样为您做这件事,因为我们需要访问的定义隐藏在 MinGW 和 GCC 后面。我们还有一些 MSVC++ 错误需要解决。

这是我们在 Windows 上的做法,但我们无法访问 MinGW 中的这些定义(来自 config.h : 950):

// Dynamic Initialization and Destruction with Concurrency ("Magic Statics")
// MS at VS2015 with Vista (19.00); GCC at 4.3; LLVM Clang at 2.9; Apple Clang at 4.0; Intel 11.1; SunCC 5.13.
// Microsoft's implementation only works for Vista and above, so its further
// limited. http://connect.microsoft.com/VisualStudio/feedback/details/1789709
#if (CRYPTOPP_MSC_VERSION >= 1900) && ((WINVER >= 0x0600) || (_WIN32_WINNT >= 0x0600)) || \
(CRYPTOPP_LLVM_CLANG_VERSION >= 20900) || (CRYPTOPP_APPLE_CLANG_VERSION >= 40000) || \
(__INTEL_COMPILER >= 1110) || (CRYPTOPP_GCC_VERSION >= 40300) || (__SUNPRO_CC >= 0x5130)
# define CRYPTOPP_CXX11_DYNAMIC_INIT 1
#endif // Dynamic Initialization compilers

如果您定义了 CRYPTOPP_NO_CXX11,则将定义以下内容,您将避免这些问题:CRYPTOPP_CXX11_DYNAMIC_INITCRYPTOPP_CXX11_SYNCHRONIZATIONCRYPTOPP_CXX11_ATOMICS


第二个问题,关于Clion和Cmake的问题,解决如下。我们使用我们的 Autotools 和 Cmake 文件设置了一个单独的 GitHub。 Autotools 文件位于 cryptopp-autotools , Cmake 文件位于 cryptopp-cmake .

存储库在我的 GiHub 中,因为编写该库并提供 Crypto++ GitHub 的戴伟希望避免这种管理方式。逻辑分离还有助于建立逻辑边界,让人们知道 Autotools 和 CMake 不是官方 Crypto++ 发行版的一部分。

社区负责 Autotools 和 Cmake,我们将与社区一起解决问题。如果社区投入工作,那么 Autotools 和 Cmake 将会改进。如果 Autotools 或 CMake 变得稳定,那么我们会将包含这些文件的 tarball 添加到官方发行版中。

目前Autotools和Cmake都处于需要改进的状态。 Cmake 的问题详见 CMake | Current Status在维基上。 Autotools 的问题并没有真正记录下来,因为我与发行版维护人员一起工作。这有点像我们知道问题是什么,但大多数其他人不知道。

关于c++ - CLion 和 Crypto++ 库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46989046/

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