gpt4 book ai didi

c++ - 链接 : fatal error LNK1181: cannot open input file 'libclamav.lib'

转载 作者:可可西里 更新时间:2023-11-01 18:16:07 26 4
gpt4 key购买 nike

我正在使用 Microsoft Visual Studio 2010,我正在使用开源 Clamav,我的代码在下面给出,它产生了一个错误

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <io.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <clamav.h>


int main(int argc, char **argv)
{
int fd, ret;
unsigned long int size = 0;
unsigned int sigs = 0;
long double mb;
const char *virname;
struct cl_engine *engine;


if(argc != 2) {
printf("Usage: %s file\n", argv[0]);
return 2;
}

if((fd = open(argv[1], O_RDONLY)) == -1) {
printf("Can't open file %s\n", argv[1]);
return 2;
}

if((ret = cl_init(CL_INIT_DEFAULT)) != CL_SUCCESS) {
printf("Can't initialize libclamav: %s\n", cl_strerror(ret));
return 2;
}

if(!(engine = cl_engine_new())) {
printf("Can't create new engine\n");
return 2;
}

/* load all available databases from default directory */
if((ret = cl_load(cl_retdbdir(), engine, &sigs, CL_DB_STDOPT)) != CL_SUCCESS) {
printf("cl_load: %s\n", cl_strerror(ret));
close(fd);
cl_engine_free(engine);
return 2;
}

printf("Loaded %u signatures.\n", sigs);

/* build engine */
if((ret = cl_engine_compile(engine)) != CL_SUCCESS) {
printf("Database initialization error: %s\n", cl_strerror(ret));;
cl_engine_free(engine);
close(fd);
return 2;
}

/* scan file descriptor */
if((ret = cl_scandesc(fd, &virname, &size, engine, CL_SCAN_STDOPT)) == CL_VIRUS) {
printf("Virus detected: %s\n", virname);
} else {
if(ret == CL_CLEAN) {
printf("No virus detected.\n");
} else {
printf("Error: %s\n", cl_strerror(ret));
cl_engine_free(engine);
close(fd);
return 2;
}
}
close(fd);

/* free memory */
cl_engine_free(engine);

/* calculate size of scanned data */
mb = size * (CL_COUNT_PRECISION / 1024) / 1024.0;
printf("Data scanned: %2.2Lf MB\n", mb);

return ret == CL_VIRUS ? 1 : 0;
}

产生以下错误LINK: fatal error LNK1181:无法打开输入文件“libclamav.lib”

请指导我

最佳答案

如果在链接期间指定的 .lib 或 .obj 文件未在当前目录、LIBPATH 链接器指定的任何目录中找到,您会在 Visual Studio 中收到 LNK1181 错误选项,或在 LIB 环境变量中指定的任何目录。

您可以将包含libclamav.lib 库文件的目录添加到LIBPATH 来解决问题(此说明可能因您的Visual Studio 版本而有所不同) :

  1. 在解决方案资源管理器中,右键单击项目,然后单击属性
  2. 属性页对话框中,展开链接器,然后单击常规
  3. Additional Library Directories 字段中,指定 libclamav.lib 所在的路径。

LIBPATH 包含空格时,也会发生此错误。如果是这种情况,请将库移动到没有空格的路径或在路径两边加上引号。

关于c++ - 链接 : fatal error LNK1181: cannot open input file 'libclamav.lib' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18352101/

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