简体   繁体   English

Clamav开源杀毒软件

[英]Clamav open source antivirus

I have been trying to study the source code of clamav open source antivirus as a part of my project. 我一直在尝试研究clamav开源防病毒软件的源代码,这是我项目的一部分。 Hence I downloaded the latest stable release clamav.0.99.2.tar.gz from the website. 因此,我从网站上下载了最新的稳定版本clamav.0.99.2.tar.gz

I'm using eclipse neon.2 Release 4.6.2 on Windows 10 64-bit. 我正在Windows 10 64位上使用eclipse neon.2版本4.6.2。

I created an existing make file project using the clamav folder extracted, and then converted it into an C/C++ autotools project. 我使用提取的clamav文件夹创建了一个现有的make文件项目,然后将其转换为C / C ++ autotools项目。

While configuring the project, I get an error "openssl not found", Although I have installed openssl in my cygwin64 terminal and also I run the ecipse from this terminal only. 配置项目时,出现错误“找不到openssl”,尽管我在cygwin64终端中安装了openssl,并且我也仅从该终端运行ecipse。

Is my approach completely wrong? 我的方法完全错误吗?

from the terminal in the linux VM, type: 在Linux VM的终端中,输入:

sudo apt-get install libssl-dev 

to install the SSL then from the clamav-0.99.2 directory type: 然后从clamav-0.99.2目录安装SSL:

./configure 

when that completes then type: 完成后,输入:

make 

This will take a while to complete, then (if you want to actually install the clamav application) type: 这将需要一些时间才能完成,然后(如果要实际安装clamav应用程序)键入:

make install

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM