内容简介:作者:朱金灿来源:编译环境:win10企业版
作者:朱金灿
来源: https://blog.csdn.net/clever101
- 准备材料。
编译环境:win10企业版
编译工具:vs2013、mingw32。
源码:
pthread库的头文件(config.h、implement.h、pthread.h、sched.h、semaphore.h)
boost_1_63_0
dokany-0.7.4
ceph-dokan-0.94.1
这三者的关系是这样的:编译ceph-dokan-0.94.1需要dokany-0.7.4的头文件和库文件,需要boost_1_63_0的头文件(网上的资料说需要编译boost_1_63_0,实际上并不需要)。
- 编译dokany-0.7.4
解压dokany-0.7.4,使用vs2013打开dokany-0.7.4文件夹下的dokan.sln,编译dokan工程,生成dokan.lib和dokan.dll。
将生成的 dokan.lib 拷贝到 ceph-dokan-0.94.1\dokan 目录下,
使用dos命名直接切换到 ceph-dokan-0.94.1 目录下,运行编译命令:
mingw32-make ceph-dokan.exe
出现编译错误:
修改 ceph-dokan-0.94.1 目录下的Makefile:
修改ceph-dokan-0.94.1\dokan\ceph_dokan.c,增加一句代码:
#include "pthread.h"
修改ceph-dokan-0.94.1\common\ceph-mingw-type.h,修改代码:
#define _FAKE_TIME_H_SOURCED 1 #define __need_struct_timespec 1 //#include <parts/time.h> // 注释这句 #include "pthread.h" // 增加这句 #undef __need_struct_timespec #define HAVE_STRUCT_TIMESPEC 1
然后运行编译命令:
mingw32-make ceph-dokan.exe
可以编译的源码文件下载:
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- Xcode 编译疾如风系列(二):并行编译
- 编写 MSBuild 内联编译任务(Task)用于获取当前编译环境下的所有编译目标(Target)
- 使用 Visual Studio 编译时,让错误一开始发生时就停止编译(以便及早排查编译错误节省时间)
- Go编译缓存导致C文件修改后未重新编译
- Android Apk反编译系列教程(一)如何反编译APK
- 漫话:如何给女朋友解释什么是编译与反编译
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Designing Web Navigation
James Kalbach / O'Reilly Media / 2007-8-15 / USD 49.99
Thoroughly rewritten for today's web environment, this bestselling book offers a fresh look at a fundamental topic of web site development: navigation design. Amid all the changes to the Web in the pa......一起来看看 《Designing Web Navigation》 这本书的介绍吧!