- 博客(3)
- 收藏
- 关注
原创 murmurhash64B使用方法
1. c/c++版 static unsigned long long MurmurHash64B ( const void * key, int len, unsigned int seed ) { const unsigned int m = 0x5bd1e995; const int r = 24; unsigned int h1 = seed ^ len; unsigned int h2 = 0; const unsign...
2020-06-04 09:11:13
1045
转载 make的使用和Makefile规则和编程及其基本命令(简单)
概述: make从Makefile中文件中获取模块间的依赖关系,判断哪些文件已经过时,根据这些信息make确定哪些文件需要重新编译,然后使用Makefile中的编译命令进行编译 make命令参数详解 -C dir:在读取Makefile文件前,先切换到“dir”目录下,也就是把dir作为当前目录 -d :make执行时打印出所有的调试信息 -e :不允许在Makefile中对系统环境变量进行重新赋值 -f filename:使用指定文件作为Makefile文件 -i :忽略执行Ma
2020-05-13 14:28:05
1065
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人