...already defined in libcmtd.lib错误的处理

简介: 今天自己编译的lua.lib文件放入原来的服务端工程中,在链接阶段出现大量错误, 提示:...already defined in libcmtd.lib。 经过查询,发现网上提供的几个方案都不适合。 例如:Linker--Ignore Specific Library中已经填写了libcimtd.lib了。 解决过程及方案: 原工程:C/C++ -- Code Generati

今天自己编译的lua.lib文件放入原来的服务端工程中,在链接阶段出现大量错误,

提示:...already defined in libcmtd.lib。

经过查询,发现网上提供的几个方案都不适合。

例如:Linker--Ignore Specific Library中已经填写了libcimtd.lib了。

解决过程及方案:

原工程:C/C++ -- Code Generation -- Runtime Library:/MTD

lua工程:C/C++ -- Code Generation -- Runtime Library:/MDd

将lua工程修改为/MTD,重新编译出lua.lib文件,然后添加到原工程,编译通过。

添加的lib要与原工程模式相同。

相关文章
|
4月前
|
iOS开发
解决Error (Xcode): File not found:XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphoneos.a
解决Error (Xcode): File not found:XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphoneos.a
50 0
|
6月前
No rule to make target ‘.xxxxxxxx‘, needed by ‘debug/xxxx.cpp‘. Stop.
No rule to make target ‘.xxxxxxxx‘, needed by ‘debug/xxxx.cpp‘. Stop.
关于 CMake编译出出现错误“Could not find compiler set in environment variable RC:” 的解决方法
关于 CMake编译出出现错误“Could not find compiler set in environment variable RC:” 的解决方法
关于 CMake编译出出现错误“Could not find compiler set in environment variable RC:” 的解决方法
编译OpenJDK11:configure: error: Target CPU mismatch. We are building for x86_64 but CL is for “版“; exp
编译OpenJDK11:configure: error: Target CPU mismatch. We are building for x86_64 but CL is for “版“; exp
171 0
symbol lookup error: /home/quantum6/build_libs/lib/libreadline.so.7: undefined symbol: UP
symbol lookup error: /home/quantum6/build_libs/lib/libreadline.so.7: undefined symbol: UP
127 0
对‘avformat_find_stream_info’未定义的引用、to the PKG_CONFIG_PATH environment variable
对‘avformat_find_stream_info’未定义的引用、to the PKG_CONFIG_PATH environment variable
92 0
Could not find com.serenegiant:common:4.1.1
Could not find com.serenegiant:common:4.1.1
259 0
|
NoSQL Python
解决gdb报错:Failed to import the site module,No module named '_sysconfigdata_m'
解决gdb报错:Failed to import the site module,No module named '_sysconfigdata_m'
398 0
|
应用服务中间件 Linux nginx
./configure: error: C compiler cc is not found
./configure: error: C compiler cc is not found
856 0
|
Java
The environment variable JAVA_HOME(with the value of xxx) does not point to a valid JVM installation
电脑上的IntelliJ IDEA有段时间没用了,今天有朋友在相关文章 IntelliJ IDEA 运行你的第一个Java应用程序 中提出问题,我就打开IntelliJ IDEA看看,结果提示以下信息: The environment variable JAVA_HOME(with the value of xxx) does not point to a valid JVM installation 如下图: 环境变量 JAVA_HOME 的值没有指向可用的JVM安装目录。
3369 0