笔记
6kkk
记录学习,分享知识。
展开
-
Makefile 常用 详解
1)Makefile基本格式如下:target ... : prerequisites ... command ... ...target //目标文件, 可以是 Object File, 也可以是可执行文件prerequisites //生成 target 所需要的文件或者目标command //make需要执行的命令 (任意的shell命令), Makefile中的命令必须以 [tab] 开头显示规则 //说明如何生成一个或多个目原创 2022-07-01 15:48:56 · 2138 阅读 · 1 评论 -
编译链接文件失败
error:implicit declaration of function 'xxxx' [-Werror,-Wimplicit-funtion-declaration]未找到引用 未声明。一般为没找到头文件或头文件中未声明。undefined reference to 'xxxxxx'找到了声明 但未找到源文件 就是.c文件 实际实现的函数。一般是.c文件被删掉或被编译成了.o...原创 2022-03-02 20:12:09 · 178 阅读 · 0 评论 -
搭建Opengrok
OpenGrok原创 2021-12-31 16:30:28 · 785 阅读 · 0 评论 -
搭建git远程仓库,repo集成git仓库
一、搭建远程git仓库搭建git仓 需要先建立远程仓库和所需分支远程仓库可以建立在不同或相同得服务器上git init //选择一个目录 执行git init 会产生一个.git目录 如想建多个仓可以改成对应名称test.git 避免重复建立好远程仓后我们拉取远程仓到本地(可以和远程仓在相同或不同的服务器上,需要保障路径正确) git clone ssh://192.x.x.x/home/xx/xx/test.git 此时拉取的是一个空仓也没有分支那先创建分支:git branch..原创 2021-12-17 15:46:13 · 1931 阅读 · 0 评论 -
Linux设备树常用的OF函数总结
linux下devicetree中常用的of函数从device_node中获取信息:int of_property_read_u8_array(const struct device_node *np, const char *propname,u8 *out_values, size_t sz);int of_property_read_u16_array(const struct device_node *np, const char *propname,u16 *out_values, size原创 2021-07-28 22:45:06 · 1443 阅读 · 0 评论 -
内核打印时间
u64 time1, time2, time3;time1 = jiffies;•••time2 = jiffies;•••time3 = jiffies;printk(“ ———- a:%llu b:%llu ———— \n”,(time2 - time1),(time3 - time2));原创 2021-05-09 12:01:20 · 359 阅读 · 0 评论 -
映射
https://www.cnblogs.com/big-devil/p/8590228.html原创 2020-12-14 02:36:52 · 284 阅读 · 1 评论