gpt4 book ai didi

c++ - 在使用 Visual Studio 2013 64 位编译器编译的 CMake 项目中使用 ttmath

转载 作者:搜寻专家 更新时间:2023-10-31 02:22:58 25 4
gpt4 key购买 nike

包含标题时

#include "ttmath/ttmath.h"

ttmath's web page 所述(库包含在项目文件夹内的文件夹 ttmath 中),我得到了一些编译器错误,如下所示:

main.cpp.obj:-1: error: LNK2019: unresolved external symbol ttmath_adc_x64 referenced in function "public: unsigned __int64 __cdecl ttmath::UInt<28>::Add(class ttmath::UInt<28> const &,unsigned __int64)" (?Add@?$UInt@$0BM@@ttmath@@QEAA_KAEBV12@_K@Z)

我正在使用 QT Creator 3.3.1,它生成了 CMakeLists.txt 文件

project(my_project)
cmake_minimum_required(VERSION 2.8)
aux_source_directory(. SRC_LIST)
add_executable(${PROJECT_NAME} ${SRC_LIST})

最佳答案

如所述here ,问题是 Visual Studio 64 位不支持汇编代码文件 ttmathuint_x86_64_msvc.asm 的内联。因此,选项是

  1. 通过添加禁用程序集

    #define TTMATH_NOASM 1

    在包含 ttmath.h 之前。这将花费大约两倍的性能。

  2. 手动组装并包含文件:

    • 运行命令 "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\x86_amd64\ml64.exe"/c ttmathuint_x86_64_msvc.asm(在 ttmath 文件夹)。

    • 通过将 CMakeLists.txt 中的最后一行替换为

      ,将目标文件包含在编译中

      add_executable(${PROJECT_NAME} ${SRC_LIST} ttmath/ttmathuint_x86_64_msvc.obj)

关于c++ - 在使用 Visual Studio 2013 64 位编译器编译的 CMake 项目中使用 ttmath,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29732727/

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