(四)u-boot2013.01.01 for s5pv210:《mkconfig分析》

转载地址:http://blog.csdn.net/zsy2020314/article/details/9312719

         config.mk主要功能是配置单板信息和编译环境,将会被u-boot的makefile所调用,本文仍然侧重于句法分析。

  1. #########################################################################  
  2. # 脚本所在的目录通常在U-boot源码顶层目录下,所以CURDIR = SRCTREE,所以dir = 空  
  3. ifeq ($(CURDIR),$(SRCTREE))  
  4. dir :=  
  5. else  
  6. dir := $(subst $(SRCTREE)/,,$(CURDIR))  
  7. endif  
  8.   
  9. # 不相等的情况下才会建立相应的目录,这里不会被执行  
  10. ifneq ($(OBJTREE),$(SRCTREE))  
  11. # Create object files for SPL in a separate directory  
  12. ifeq ($(CONFIG_SPL_BUILD),y)  
  13. obj := $(if $(dir),$(SPLTREE)/$(dir)/,$(SPLTREE)/)  
  14. else  
  15. obj := $(if $(dir),$(OBJTREE)/$(dir)/,$(OBJTREE)/)  
  16. endif  
  17. src := $(if $(dir),$(SRCTREE)/$(dir)/,$(SRCTREE)/)  
  18.   
  19. $(shell mkdir -p $(obj))  
  20. else  
  21. # Create object files for SPL in a separate directory  
  22. # CONFIG_SPL_BUILD = y的时候才会建立执行的存放编译文件的目录,这里也不执行  
  23. ifeq ($(CONFIG_SPL_BUILD),y)  
  24. obj := $(if $(dir),$(SPLTREE)/$(dir)/,$(SPLTREE)/)  
  25.   
  26. $(shell mkdir -p $(obj))  
  27. else  
  28. # 所以最后的结果是obj为空,src也为空  
  29. obj :=  
  30. endif  
  31. src :=  
  32. endif  
  33.   
  34. # clean the slate ...  
  35. # 清除标志  
  36. PLATFORM_RELFLAGS =  
  37. PLATFORM_CPPFLAGS =  
  38. PLATFORM_LDFLAGS =  
  39.   
  40. #########################################################################  
  41. # HOSTCPPFLAGS的值为空,HOSTCFLAGS = -Wall -Wstrict-prototypes -O2   
  42. # -fomit-frame-pointer  
  43. HOSTCFLAGS  = -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer \  
  44.           $(HOSTCPPFLAGS)  
  45. HOSTSTRIP   = strip  
  46.   
  47. # Mac OS X / Darwin's C preprocessor is Apple specific.  It  
  48. # generates numerous errors and warnings.  We want to bypass it  
  49. # and use GNU C's cpp.  To do this we pass the -traditional-cpp  
  50. # option to the compiler.  Note that the -traditional-cpp flag  
  51. # DOES NOT have the same semantics as GNU C's flag, all it does  
  52. # is invoke the GNU preprocessor in stock ANSI/ISO C fashion.  
  53. #  
  54. # Apple's linker is similar, thanks to the new 2 stage linking  
  55. # multiple symbol definitions are treated as errors, hence the  
  56. # -multiply_defined suppress option to turn off this error.  
  57. #  
  58. # 如果HOSTOS是darwin体系,则做专门处理  
  59. ifeq ($(HOSTOS),darwin)  
  60. # get major and minor product version (e.g. '10' and '6' for Snow Leopard)  
  61. DARWIN_MAJOR_VERSION    = $(shell sw_vers -productVersion | cut -f 1 -d '.')  
  62. DARWIN_MINOR_VERSION    = $(shell sw_vers -productVersion | cut -f 2 -d '.')  
  63.   
  64. os_x_before = $(shell if [ $(DARWIN_MAJOR_VERSION) -le $(1) -a \  
  65.     $(DARWIN_MINOR_VERSION) -le $(2) ] ; then echo "$(3)"else echo "$(4)"; fi ;)  
  66.   
  67. # Snow Leopards build environment has no longer restrictions as described above  
  68. HOSTCC       = $(call os_x_before, 10, 5, "cc""gcc")  
  69. HOSTCFLAGS  += $(call os_x_before, 10, 4, "-traditional-cpp")  
  70. HOSTLDFLAGS += $(call os_x_before, 10, 5, "-multiply_defined suppress")  
  71. else  
  72. # 除了darwin外其他都采用gcc  
  73. HOSTCC      = gcc  
  74. endif  
  75.   
  76. ifeq ($(HOSTOS),cygwin)  
  77. HOSTCFLAGS  += -ansi  
  78. endif  
  79.   
  80. # We build some files with extra pedantic flags to try to minimize things  
  81. # that won't build on some weird host compiler -- though there are lots of  
  82. # exceptions for files that aren't complaint.  
  83.   
  84. # filter-out为反过滤函数,HOSTCFLAGS中的"-pedantic"全部删掉  
  85. # HOSTCFLAGS_NOPED = -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer  
  86. # HOSTCFLAGS       = -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer   
  87. # -pedantic  
  88. HOSTCFLAGS_NOPED = $(filter-out -pedantic,$(HOSTCFLAGS))  
  89. HOSTCFLAGS  += -pedantic  
  90.   
  91. #########################################################################  
  92. #  
  93. # Option checker, gcc version (courtesy linux kernel) to ensure  
  94. # only supported compiler options are used  
  95. #  
  96. # 选项检查器,确保支持编译选项的唯一可用的gcc版本  
  97. # cc-option-sys=空  cc-option=空   
  98. # strip函数的作用是去掉字符串的空格,call函数作用是把它后面的参数一次赋值给$(1),$(2),...  
  99. # findstring函数是从字符串中超找指定内容,$(findstring $1,$(CC_OPTIONS))  
  100. # 就是从CC_OPTIONS从查找$(1)的内容,找到则返回$(1),找不到则返回空  
  101. CC_OPTIONS_CACHE_FILE := $(OBJTREE)/include/generated/cc_options.mk  
  102. CC_TEST_OFILE := $(OBJTREE)/include/generated/cc_test_file.o  
  103.   
  104. -include $(CC_OPTIONS_CACHE_FILE)  
  105.   
  106. #########################################################################  
  107. # cc-option用于检查编译器CC是否支持某选项。将2个选项作为参数传递给cc-option函数,该函数# 调用CC编译器检查参数1是否支持,若支持则函数返回参数1,否则返回参数2 (因此CC编译器必须支# 持参数1或参数2,若两个都不支持则会编译出错)。可以像下面这样调用cc-option函数,并将支持# 的选项添加到FLAGS中:  FLAGS +=$(call cc-option,option1,option2)  
  108.   
  109. cc-option-sys = $(shell mkdir -p $(dir $(CC_TEST_OFILE)); \  
  110.         if $(CC) $(CFLAGS) $(1) -S -xc /dev/null -o $(CC_TEST_OFILE) \  
  111.         > /dev/null 2>&1; then \  
  112.         echo 'CC_OPTIONS += $(strip $1)' >> $(CC_OPTIONS_CACHE_FILE); \  
  113.         echo "$(1)"; fi)  
  114.   
  115. ifeq ($(CONFIG_CC_OPT_CACHE_DISABLE),y)  
  116. cc-option = $(strip $(if $(call cc-option-sys,$1),$1,$2))  
  117. else  
  118. cc-option = $(strip $(if $(findstring $1,$(CC_OPTIONS)),$1,\  
  119.         $(if $(call cc-option-sys,$1),$1,$2)))  
  120. endif  
  121.   
  122. #########################################################################  
  123. # cc-version       = 0404      
  124. # binutils-version = 0221  
  125. cc-version = $(shell $(SHELL) $(SRCTREE)/tools/gcc-version.sh $(CC))  
  126. binutils-version = $(shell $(SHELL) $(SRCTREE)/tools/binutils-version.sh $(AS))  
  127.   
  128. #########################################################################  
  129. # Include the make variables (CC, etc...)  
  130. # AS = as  
  131. AS  = $(CROSS_COMPILE)as  
  132.   
  133.   
  134.   
  135. #########################################################################  
  136. # 链接器固定使用GNU ld  
  137. # LD = ld  
  138. LD  = $(shell if $(CROSS_COMPILE)ld.bfd -v > /dev/null 2>&1; \  
  139.         then echo "$(CROSS_COMPILE)ld.bfd"else echo "$(CROSS_COMPILE)ld"; fi;)  
  140.   
  141. #########################################################################  
  142. # 定义交叉工具链集  
  143. # CC = gcc  
  144. # CPP = gcc -E  
  145. # AR = ar  
  146. # NM = nm  
  147. # LDR = ldr  
  148. # STRIP = strip  
  149. # OBJCOPY = objcopy  
  150. # OBJDUMP = objdump  
  151. # RANLIB = RANLIB  
  152. # DTC = dtc  
  153. CC  = $(CROSS_COMPILE)gcc  
  154. CPP = $(CC) -E  
  155. AR  = $(CROSS_COMPILE)ar  
  156. NM  = $(CROSS_COMPILE)nm  
  157. LDR = $(CROSS_COMPILE)ldr  
  158. STRIP   = $(CROSS_COMPILE)strip  
  159. OBJCOPY = $(CROSS_COMPILE)objcopy  
  160. OBJDUMP = $(CROSS_COMPILE)objdump  
  161. RANLIB  = $(CROSS_COMPILE)RANLIB  
  162. DTC = dtc  
  163.   
  164. #########################################################################  
  165. # 加载产生的单板配置文件autoconf.mk和config.mk,均在include目录下  
  166. # config.mk中内容是ARCH CPU BOARD VENDOR SOC5个变量信息  
  167. # autoconf.mk为单板配置宏的集合,打开/关闭 用 y/n表示  
  168. sinclude $(OBJTREE)/include/autoconf.mk  
  169. sinclude $(OBJTREE)/include/config.mk  
  170.   
  171. #########################################################################  
  172. # Some architecture config.mk files need to know what CPUDIR is set to,  
  173. # so calculate CPUDIR before including ARCH/SOC/CPU config.mk files.  
  174. # Check if arch/$ARCH/cpu/$CPU exists, otherwise assume arch/$ARCH/cpu contains  
  175. # CPU-specific code.  
  176. # 翻译上面这段英文:  
  177. # 需要知道CPUDIR的设置来查找一些架构的config.mk文件,所以在加载ARCH/SOC/config.mk和  
  178. # ARCH/CPU/config.mk之前要设置好CPUDIR路径。检查目录arch/$ARCH/cpu/$CPU是否存在,  
  179. # 否则认为arch/$ARCH/cpu目录下包含有CPU相关的代码。翻译完毕!  
  180. # 看看ifneq的执行:  
  181. # 首先这里CPUDIR = arch/$(ARCH)/cpu/$(CPU) = arch/arm/cpu/armv7  
  182. # wildcard函数用来匹配 arch/arm/cpu/armv7这一目录,意思就是如果不存在这个目录  
  183. # 则CPUDIR=arch/$(ARCH)/cpu=arch/arm/cpu,否则就保持采用  
  184. # CPUDIR=arch/arm/cpu/armv7  
  185.   
  186. CPUDIR=arch/$(ARCH)/cpu/$(CPU)  
  187. ifneq ($(SRCTREE)/$(CPUDIR),$(wildcard $(SRCTREE)/$(CPUDIR)))  
  188. CPUDIR=arch/$(ARCH)/cpu  
  189. endif  
  190.   
  191. #########################################################################  
  192. # 加载 $(TOPDIR)/arch/arm/config.mk  
  193. # 加载 $(TOPDIR)/arch/arm/config.mk  
  194. sinclude $(TOPDIR)/arch/$(ARCH)/config.mk         # 加载架构编译选项文件  
  195. sinclude $(TOPDIR)/arch/arm/cpu/armv7/config.mk  # 加载CPU相关编译选项文件  
  196.   
  197. #########################################################################  
  198. # 定义有SOC = s5pc1xx,所以加载$(TOPDIR)/arch/arm/cpu/armv7/s5pc1xx/config.mk  
  199. ifdef   SOC  
  200. sinclude $(TOPDIR)/$(CPUDIR)/$(SOC)/config.mk   # include  SoC  specific rules  
  201. endif  
  202.   
  203. #########################################################################  
  204. # 定义有VENDOR = samsung,所以BOARDDIR = samsung/smdkc100  
  205. ifdef   VENDOR  
  206. BOARDDIR = $(VENDOR)/$(BOARD)  
  207. else  
  208. BOARDDIR = $(BOARD)  
  209. endif  
  210.   
  211. #########################################################################  
  212. # 定义有BOARD = smdkc100,所以加载$(TOPDIR)/board/samsung/smdkc100/config.mk  
  213. ifdef   BOARD  
  214. sinclude $(TOPDIR)/board/$(BOARDDIR)/config.mk  # 加载单板编译选项文件  
  215. endif  
  216.   
  217. #########################################################################  
  218. # 我们不会在任何地方使用ARFLAGS了,所以有人不更新$(AR)就试图处理旧代码的时候就会报错  
  219. # ARFLAGS = $(error update your Makefile to use cmd_link_o_target and not AR)  
  220. # RELFLAGS=$(PLATFORM_RELFLAGS)=-fno-common -ffixed-r8 -msoft-float  
  221. # DBGFLAGS = -g  
  222. # OPTFLAGS = -Os  
  223. # OBJCFLAGS = --gap-fill=0xff  
  224. # gccincdir = $(shell $(CC) -print-file-name=include)=交叉工具链include目录在宿# 主机中的位置CPPFLAGS = -g -Os -fno-common -ffixed-r8 -msoft-float -D__KERNEL__  
  225. ARFLAGS = $(error update your Makefile to use cmd_link_o_target and not AR)  
  226. RELFLAGS= $(PLATFORM_RELFLAGS)  
  227. DBGFLAGS= -g  # -DDEBUG  
  228. OPTFLAGS= -Os # -fomit-frame-pointer  
  229.   
  230. OBJCFLAGS += --gap-fill=0xff  
  231.   
  232. gccincdir := $(shell $(CC) -print-file-name=include)  
  233.   
  234. CPPFLAGS := $(DBGFLAGS) $(OPTFLAGS) $(RELFLAGS)     \  
  235.     -D__KERNEL__  
  236.   
  237. # Enable garbage collection of un-used sections for SPL  
  238. ifeq ($(CONFIG_SPL_BUILD),y)  
  239. CPPFLAGS += -ffunction-sections -fdata-sections  
  240. LDFLAGS_FINAL += --gc-sections  
  241. endif  
  242.   
  243. ##########################################################  
  244. # U-Boot编译时将使用TEXT_BASE作为代码段连接的起始地址  
  245. # CONFIG_SYS_TEXT_BASE不为空,所以CPPFLAGS会多出一项:  
  246. # -DCONFIG_SYS_TEXT_BASE=0x34800000  
  247. ifneq ($(CONFIG_SYS_TEXT_BASE),)  
  248. CPPFLAGS += -DCONFIG_SYS_TEXT_BASE=$(CONFIG_SYS_TEXT_BASE)  
  249. endif  
  250.   
  251. ifneq ($(CONFIG_SPL_TEXT_BASE),)  
  252. CPPFLAGS += -DCONFIG_SPL_TEXT_BASE=$(CONFIG_SPL_TEXT_BASE)  
  253. endif  
  254.   
  255. ifneq ($(CONFIG_SPL_PAD_TO),)  
  256. CPPFLAGS += -DCONFIG_SPL_PAD_TO=$(CONFIG_SPL_PAD_TO)  
  257. endif  
  258.   
  259. ifeq ($(CONFIG_SPL_BUILD),y)  
  260. CPPFLAGS += -DCONFIG_SPL_BUILD  
  261. endif  
  262.   
  263. ifneq ($(RESET_VECTOR_ADDRESS),)  
  264. CPPFLAGS += -DRESET_VECTOR_ADDRESS=$(RESET_VECTOR_ADDRESS)  
  265. endif  
  266.   
  267. ifneq ($(OBJTREE),$(SRCTREE))  
  268. CPPFLAGS += -I$(OBJTREE)/include2 -I$(OBJTREE)/include  
  269. endif  
  270.   
  271. ##########################################################  
  272. # 添加-I$(TOPDIR)/include路径到CPPFLAGS中,还有  
  273. # -fno-builtin -ffreestanding -nostdinc -isystem $(gccincdir)   
  274. # -pipe $(PLATFORM_CPPFLAGS)也添加进CPPFLAGS中  
  275. CPPFLAGS += -I$(TOPDIR)/include  
  276. CPPFLAGS += -fno-builtin -ffreestanding -nostdinc   \  
  277.     -isystem $(gccincdir) -pipe $(PLATFORM_CPPFLAGS)  
  278.   
  279. ##########################################################  
  280. # 没有定义BUILD_TAG,执行else分支,赋值CFLAGS  
  281. ifdef BUILD_TAG  
  282. CFLAGS := $(CPPFLAGS) -Wall -Wstrict-prototypes \  
  283.     -DBUILD_TAG='"$(BUILD_TAG)"'  
  284. else  
  285. CFLAGS := $(CPPFLAGS) -Wall -Wstrict-prototypes  
  286. endif  
  287.   
  288. ##########################################################  
  289. # 利用call函数,使得$1=cc-option ,$2=-fno-stack-protector  
  290. # CFLAGS_SSP= $1$2 = -fno-stack-protector,然后把CFLAGS_SSP  
  291. # 追加给CFLAGS  
  292. CFLAGS_SSP := $(call cc-option,-fno-stack-protector)  
  293. CFLAGS += $(CFLAGS_SSP)  
  294. # Some toolchains enable security related warning flags by default,  
  295. # but they don't make much sense in the u-boot world, so disable them.  
  296. # 上面英文意思是一些工具链默认使用了一些安全警告选项,但是在U-boot的世界中我们不必要在意  
  297. # 太多这些警告,所以禁用它们。  
  298. # CFLAGS_WARN = -Wno-format-nonliteral -Wno-format-security,然后追加  
  299. # 到编译选项变量CFLAGS中  
  300. CFLAGS_WARN := $(call cc-option,-Wno-format-nonliteral) \  
  301.            $(call cc-option,-Wno-format-security)  
  302. CFLAGS += $(CFLAGS_WARN)  
  303.   
  304. # Report stack usage if supported  
  305. # 如果支持的话开启报告堆栈使用状态,通过参数-fstack-usage开启,追加到CFLAGS中  
  306. CFLAGS_STACK := $(call cc-option,-fstack-usage)  
  307. CFLAGS += $(CFLAGS_STACK)  
  308.   
  309. # $(CPPFLAGS) sets -g, which causes gcc to pass a suitable -g<format>  
  310. # option to the assembler.  
  311. # CPPFLAGS设置了-g参数,  
  312. AFLAGS_DEBUG :=  
  313.   
  314. # turn jbsr into jsr for m68k  
  315. ifeq ($(ARCH),m68k)  
  316. ifeq ($(findstring 3.4,$(shell $(CC) --version)),3.4)  
  317. AFLAGS_DEBUG := -Wa,-gstabs,-S  
  318. endif  
  319. endif  
  320.   
  321. AFLAGS := $(AFLAGS_DEBUG) -D__ASSEMBLY__ $(CPPFLAGS)  
  322.   
  323. LDFLAGS += $(PLATFORM_LDFLAGS)  
  324. LDFLAGS_FINAL += -Bstatic  
  325.   
  326. # 设置U-boot的链接选项  
  327. LDFLAGS_u-boot += -T $(obj)u-boot.lds $(LDFLAGS_FINAL)  
  328. ifneq ($(CONFIG_SYS_TEXT_BASE),)  
  329. LDFLAGS_u-boot += -Ttext $(CONFIG_SYS_TEXT_BASE)  
  330. endif  
  331.   
  332. # 设置U-boot的链接选项,当uboot是采用spl时的情况  
  333. LDFLAGS_u-boot-spl += -T $(obj)u-boot-spl.lds $(LDFLAGS_FINAL)  
  334. ifneq ($(CONFIG_SPL_TEXT_BASE),)  
  335. LDFLAGS_u-boot-spl += -Ttext $(CONFIG_SPL_TEXT_BASE)  
  336. endif  
  337.   
  338. # Location of a usable BFD library, where we define "usable" as  
  339. # "built for ${HOST}, supports ${TARGET}".  Sensible values are  
  340. # - When cross-compiling: the root of the cross-environment  
  341. # - Linux/ppc (native): /usr  
  342. # - NetBSD/ppc (native): you lose ... (must extract these from the  
  343. #   binutils build directory, plus the native and U-Boot include  
  344. #   files don't like each other)  
  345. #  
  346. # So far, this is used only by tools/gdb/Makefile.  
  347.   
  348. # 非arm架构设置,不执行  
  349. ifeq ($(HOSTOS),darwin)  
  350. BFD_ROOT_DIR =      /usr/local/tools  
  351. else  
  352. ifeq ($(HOSTARCH),$(ARCH))  
  353. # native  
  354. BFD_ROOT_DIR =      /usr  
  355. else  
  356. #BFD_ROOT_DIR =     /LinuxPPC/CDK       # Linux/i386  
  357. #BFD_ROOT_DIR =     /usr/pkg/cross      # NetBSD/i386  
  358. BFD_ROOT_DIR =      /opt/powerpc  
  359. endif  
  360. endif  
  361.   
  362. #########################################################################  
  363. # 设置各种编译选项的环境变量供Makefile使用  
  364. export  HOSTCC HOSTCFLAGS HOSTLDFLAGS PEDCFLAGS HOSTSTRIP CROSS_COMPILE \  
  365.     AS LD CC CPP AR NM STRIP OBJCOPY OBJDUMP MAKE  
  366. export  CONFIG_SYS_TEXT_BASE PLATFORM_CPPFLAGS PLATFORM_RELFLAGS CPPFLAGS CFLAGS AFLAGS  
  367.   
  368. #########################################################################  
  369. # Allow boards to use custom optimize flags on a per dir/file basis  
  370. # BCURDIR = U-boot源码顶层目录,其他的太长了就不打出来了  
  371. BCURDIR = $(subst $(SRCTREE)/,,$(CURDIR:$(obj)%=%))  
  372. ALL_AFLAGS = $(AFLAGS) $(AFLAGS_$(BCURDIR)/$(@F)) $(AFLAGS_$(BCURDIR))  
  373. ALL_CFLAGS = $(CFLAGS) $(CFLAGS_$(BCURDIR)/$(@F)) $(CFLAGS_$(BCURDIR))  
  374. EXTRA_CPPFLAGS = $(CPPFLAGS_$(BCURDIR)/$(@F)) $(CPPFLAGS_$(BCURDIR))  
  375. ALL_CFLAGS += $(EXTRA_CPPFLAGS)  
  376. ###########################################################################  
  377. # The _DEP version uses the $< file target (for dependency generation)  
  378. # See rules.mk  
  379. # 指定隐含的编译规则,例如:根据以上的定义,以“.s”结尾的目标文件将根据第一条规则由同名但后  
  380. # 缀为“.S”的源文件来生成,若不存在“.S”结尾的同名文件则根据最后一条规则由同名的“.c”文件生  
  381. # 成。  
  382. EXTRA_CPPFLAGS_DEP = $(CPPFLAGS_$(BCURDIR)/$(addsuffix .o,$(basename $<))) \  
  383.         $(CPPFLAGS_$(BCURDIR))  
  384. $(obj)%.s:  %.S  
  385.     $(CPP) $(ALL_AFLAGS) -o $@ $<  
  386. $(obj)%.o:  %.S  
  387.     $(CC)  $(ALL_AFLAGS) -o $@ $< -c  
  388. $(obj)%.o:  %.c  
  389.     $(CC)  $(ALL_CFLAGS) -o $@ $< -c  
  390. $(obj)%.i:  %.c  
  391.     $(CPP) $(ALL_CFLAGS) -o $@ $< -c  
  392. $(obj)%.s:  %.c  
  393.     $(CC)  $(ALL_CFLAGS) -o $@ $< -c -S  
  394.   
  395. #########################################################################  
  396. # If the list of objects to link is empty, just create an empty built-in.o  
  397. # $1为空,if返回空,cmd_link_o_target = rm -f; arm-linux-ar rcs  
  398. cmd_link_o_target = $(if $(strip $1),\  
  399.               $(LD) $(LDFLAGS) -r -o $@ $1,\  
  400.               rm -f $@; $(AR) rcs $@ )  
  401.   
  402. #########################################################################  
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值