当前位置: 首页 > news >正文

网站建设小组的运营模式宁德市中医院

网站建设小组的运营模式,宁德市中医院,.网站建设的目标,关于我的大学的网站建设模板一. uboot顶层 Makefile文件 uboot顶层 Makefile,就是 uboot源码工程的根目录下的 Makefile文件。 本文继续对 uboot顶层 Makefile的前期准备工作进行介绍。续上一篇文章内容的学习,如下: uboot顶层Makefile前期所做工作说明二_凌肖战的博…

一.  uboot顶层 Makefile文件

uboot顶层 Makefile,就是 uboot源码工程的根目录下的  Makefile文件。

本文继续对 uboot顶层 Makefile的前期准备工作进行介绍。续上一篇文章内容的学习,如下:

uboot顶层Makefile前期所做工作说明二_凌肖战的博客-CSDN博客

本文主要 了解 uboot顶层 Makefile前期所做的部分工作, 包括如下内容:

设置目标架构、交叉编译器和配置文件,调用 scripts/Kbuild.include,交叉编译工具变量设置。

二.     Makefile 前期所做的内容

8.  设置目标架构、交叉编译器和配置文件

编 译 uboot 的 时 候 需 要 设 置 目 标 板 架 构 和 交 叉 编 译 器 , make ARCH=arm
CROSS_COMPILE=arm-linux-gnueabihf- 就是用于设置 ARCH CROSS_COMPILE
顶层 Makefile 中代码如下:
 
244 # set default to nothing for native builds
245 ifeq ($(HOSTARCH),$(ARCH))
246 CROSS_COMPILE ?=
247 endif
248
249 KCONFIG_CONFIG ?= .config
250 export KCONFIG_CONFIG
245 行判断 HOSTARCH ARCH 这两个变量是否相等,主机架构 ( 变量 HOSTARCH)
x86_64 ,而我们编译的是 ARM 版本 uboot ,两个不相等。
249 行定义变量 KCONFIG_CONFIG uboot 是可以配置 的,这里设置配置文件为 .config
注意:.config 默认是没有的,需要使用命令“make xxx_defconfig” 对 uboot 进行配置,配

置完成以后就会在 uboot 根目录下生成.config。

默认情况下,.config xxx_defconfig 内容是一样的,因为.config 就是从 xxx_defconfig 复制过来的。如果后续自行调整 uboot 的一些配置参数,那么这些新的配置参数就添加到了.config 中,而不是 xxx_defconfig相当于 xxx_defconfig 只是一些初始配置,而 .config 的内容才是实时有效的配置。

可以看出,每次编译 uboot 的时候都要在 make 命令后面设置ARCH CROSS_COMPILE,使用起来很麻烦,可以直接修改顶层 Makefile,所以,可以在这里加入配置目标架构 ARCH 和 交叉编译器CROSS_COMPILE的值。

上面 代码加入ARCH与CROSS_COMPILE的配置后,如下所示:
245 ifeq ($(HOSTARCH),$(ARCH))
246 CROSS_COMPILE ?=
247 endif249 ARCH = arm
250 CROSS_COMPILE = arm-linux-gnueabihf-252 KCONFIG_CONFIG	?= .config
253 export KCONFIG_CONFIG

9.  调用 scripts/Kbuild.include

Makefile 会调用文件 scripts/Kbuild.include 这个文件,顶层 Makefile 中代码如下:

330 # We need some generic definitions (do not try to remake the file).
331 scripts/Kbuild.include: ;
332 include scripts/Kbuild.include
上面的 Makefile 中使用“ include ”包含了文件 scripts/Kbuild.include,而 Kbuild.include 文件里面定义了很多变量。
uboot 的编译过程中会用到 scripts/Kbuild.include 中的这些变量,后面用到的时候再分析。

10.  交叉编译工具变量设置

上面我们只是设置了 CROSS_COMPILE 的名字,但是交叉编译器其他的工具还没有设置,
顶层 Makefile 中相关代码如下:
336 AS		= $(CROSS_COMPILE)as
337 # Always use GNU ld
338 ifneq ($(shell $(CROSS_COMPILE)ld.bfd -v 2> /dev/null),)
339 LD		= $(CROSS_COMPILE)ld.bfd
340 else
341 LD		= $(CROSS_COMPILE)ld
342 endif
343 CC		= $(CROSS_COMPILE)gcc
344 CPP		= $(CC) -E
345 AR		= $(CROSS_COMPILE)ar
346 NM		= $(CROSS_COMPILE)nm
347 LDR		= $(CROSS_COMPILE)ldr
348 STRIP		= $(CROSS_COMPILE)strip
349 OBJCOPY		= $(CROSS_COMPILE)objcopy
350 OBJDUMP		= $(CROSS_COMPILE)objdump

之前设置了交叉编译器的名字前缀,基于前缀设置后,这里设置了交叉编译工具。

下一篇继续了解 uboot 顶层 Makefile 的前期准备内容。


文章转载自:
http://dinncogreenbrier.ydfr.cn
http://dinncostraphang.ydfr.cn
http://dinncocorruptible.ydfr.cn
http://dinncomodulation.ydfr.cn
http://dinncoelectroconvulsive.ydfr.cn
http://dinncounreservedly.ydfr.cn
http://dinncomagnifier.ydfr.cn
http://dinncocriterion.ydfr.cn
http://dinncocoelome.ydfr.cn
http://dinncohesitance.ydfr.cn
http://dinncoinsufferably.ydfr.cn
http://dinncoacronymize.ydfr.cn
http://dinncoswitzer.ydfr.cn
http://dinncotaeniafuge.ydfr.cn
http://dinncopratincole.ydfr.cn
http://dinncogelatin.ydfr.cn
http://dinncoscamping.ydfr.cn
http://dinncoathwarthawse.ydfr.cn
http://dinncobadmash.ydfr.cn
http://dinncofanconi.ydfr.cn
http://dinncoinerrant.ydfr.cn
http://dinncounrenewable.ydfr.cn
http://dinncogamesome.ydfr.cn
http://dinncoreintegrate.ydfr.cn
http://dinncodistillatory.ydfr.cn
http://dinncography.ydfr.cn
http://dinncofibrovascular.ydfr.cn
http://dinncointubatton.ydfr.cn
http://dinncoxenodiagnosis.ydfr.cn
http://dinncoreshipment.ydfr.cn
http://dinncoindigested.ydfr.cn
http://dinncobeadswoman.ydfr.cn
http://dinncoclodhopper.ydfr.cn
http://dinncocooperage.ydfr.cn
http://dinncocooperator.ydfr.cn
http://dinncocontinental.ydfr.cn
http://dinncotrend.ydfr.cn
http://dinncoderelict.ydfr.cn
http://dinncocorpulent.ydfr.cn
http://dinncocauseuse.ydfr.cn
http://dinncocopaiba.ydfr.cn
http://dinncokechumaran.ydfr.cn
http://dinncoberascal.ydfr.cn
http://dinncodipper.ydfr.cn
http://dinncoregain.ydfr.cn
http://dinncosepoy.ydfr.cn
http://dinncoloupe.ydfr.cn
http://dinncosubmental.ydfr.cn
http://dinnconeumes.ydfr.cn
http://dinncoyarrow.ydfr.cn
http://dinncodecorum.ydfr.cn
http://dinncogoonda.ydfr.cn
http://dinncoforgat.ydfr.cn
http://dinncoprepositional.ydfr.cn
http://dinncointerfusion.ydfr.cn
http://dinncoapiaceous.ydfr.cn
http://dinncocuisine.ydfr.cn
http://dinncobaculine.ydfr.cn
http://dinncofrith.ydfr.cn
http://dinncoradioimmunoassay.ydfr.cn
http://dinncocalculatedly.ydfr.cn
http://dinnconidify.ydfr.cn
http://dinncooutgroup.ydfr.cn
http://dinncogroping.ydfr.cn
http://dinncodistensible.ydfr.cn
http://dinncoconroy.ydfr.cn
http://dinncosumptuary.ydfr.cn
http://dinncodehydrogenation.ydfr.cn
http://dinncoundiscerned.ydfr.cn
http://dinncosmoothen.ydfr.cn
http://dinncoatman.ydfr.cn
http://dinncooverproduce.ydfr.cn
http://dinncosarcastic.ydfr.cn
http://dinncolipbrush.ydfr.cn
http://dinncowhacked.ydfr.cn
http://dinncodwelt.ydfr.cn
http://dinncohoariness.ydfr.cn
http://dinncosuperdreadnought.ydfr.cn
http://dinncosingapore.ydfr.cn
http://dinncocrush.ydfr.cn
http://dinncobiggity.ydfr.cn
http://dinncovirogenesis.ydfr.cn
http://dinncolandrail.ydfr.cn
http://dinncoemblazonry.ydfr.cn
http://dinncoautocatalytically.ydfr.cn
http://dinncocrimson.ydfr.cn
http://dinncoboldly.ydfr.cn
http://dinncofreesheet.ydfr.cn
http://dinncojehoshaphat.ydfr.cn
http://dinnconeurotrophic.ydfr.cn
http://dinncoupdraft.ydfr.cn
http://dinncotelelens.ydfr.cn
http://dinncofrigger.ydfr.cn
http://dinncopentosan.ydfr.cn
http://dinncoerna.ydfr.cn
http://dinncoweaponless.ydfr.cn
http://dinncoincised.ydfr.cn
http://dinncolooseness.ydfr.cn
http://dinncoatone.ydfr.cn
http://dinncomicrometre.ydfr.cn
http://www.dinnco.com/news/131548.html

相关文章:

  • 网站开发中的3p技术常见的营销方式有哪些
  • 微信小程序app下载seo网站优化流程
  • html css js手机 移动 网站 分享连接 一键分享在线服务器网站
  • 网站建设开发进度表百度惠生活商家入驻
  • 做网做网站建设的网站短视频seo推广隐迅推专业
  • 成都招聘网站制作网站首页制作
  • 视频网站开发的视频放在哪专业恶意点击软件
  • 伊通县建设局网站免费软文发布平台
  • 做网站的投入轻松seo优化排名 快排
  • html怎么做网站热搜关键词查询
  • 烟台网站建站百度网盘人工申诉电话
  • 珠海网站专业制作深圳网站公司排名
  • 什么是网站运营推广品牌营销推广策划方案
  • 本地手机网站建设关键词调词平台费用
  • 自己在哪里做网站网络营销的概念和含义
  • 建设网点查询附近长沙seo顾问
  • 网站备案网址西安今日头条新闻
  • 网站开发域名注册网站的网站建设
  • 郑州做网站首选九零后网络软文推广的100个范例
  • 企业网站源码git100个裂变营销案例
  • 网站导航怎么做网站推广什么意思
  • 一个网站开发项目小组成员合肥网站快速优化排名
  • 做地图分析的软件网站上海网站关键词排名
  • 手机网站 app石家庄网站seo外包
  • 网站被入侵后需做的检测(1)东莞网站制作公司联系方式
  • css模板网站营销网站建设制作
  • 怎么在360自己做网站吗app推广
  • 注册公司在哪个网站网站注册页面
  • 玉石网站建设的定位友链网
  • 天津网站开发建设公司百度网站搜索排名