当前位置:网站首页>Black cats take you learn Makefile article 13: a Makefile collection compile problem
Black cats take you learn Makefile article 13: a Makefile collection compile problem
2022-08-10 22:01:00 【Senior black cat】
This article is compiled/written based on personal work/study experience and network information. Paid content is prohibited from being reproduced.
The column where this article is located "Black cat takes you to learn Makefile"
1 ***No rule to make target ‘ ‘, needed by…
As shown in the figure:
View the above make generationWhere the .depend is suddenly not generated.
The reason may be that the Makefile generates dependencies, but the .c file does not exist in the actual code.
2 make uboot generate autoconf.mk problem
Reference link: https://blog.csdn.net/tuwenqi2013/article/details/54293229
https://blog.csdn.net/groundhappy/article/details/52709959
3 uboot configuration#make xxx Error: rm: cannot remove `asm/arch’: Is a directory
I guess this Uboot is not the source code you downloaded, but it is compiled by someone else and you want to recompile,
There is a mkconfig file at the top level of Uboot, after you open it, add -r after all rms in it
For example, the source code is rm -d asm-arm/arch and can be changed to rm -rd asm-arm/arch, which means forced deletion
边栏推荐
猜你喜欢
随机推荐
MATLAB神经网络拟合工具箱Neural Net Fitting使用方法
直播课堂系统08补-腾讯云对象存储和课程分类管理
Shell编程之条件语句(二)
F. Binary String Reconstruction
2022.8.8好题选讲(数论场)
数据标注太昂贵?这个方法可以用有限的数据训练模型实现基于文本的ReID!
Application of Spatial 3D Model Reconstruction Based on Pix4Dmapper - Spatial Analysis and Site Selection
《mysql 从入门到内卷再到入土》——Mysql基础 学习笔记目录
Bedtime story | made a Bitmap and AST length system configuration
这些不可不知的JVM知识,我都用思维导图整理好了
LeetCode-402-移掉K位数字
camera预览流程 --- 从HAL到OEM
为什么一般公司面试结束后会说「回去等消息」,而不是直接告诉面试者结果?
地理探测器Geodetector软件的下载、应用与结果解读
How to secure users in LDAP directory service?
社区分享|货拉拉通过JumpServer纳管大规模云上资产
Use Cloudreve to build a private cloud disk
ES6中的for...in/of的使用
Thread State 详解
Rider调试ASP.NET Core时报thread not gc-safe的解决方法









