现在的位置: 首页 > 综合 > 正文

UBoot顶层Makefile及config.mk确定的相关参数

2018年04月28日 ⁄ 综合 ⁄ 共 1556字 ⁄ 字号 评论关闭
VERSION_FILE = include/version_autogenerated.h   # 版本文件
HOSTARCH = i386    # 宿主机的体系结构
HOSTOS = linux      # 宿主机的操作系统
saved-output =  
BUILD_DIR  =  
OBJTREE  = /mnt/hgfs/uboot
SRCTREE  = /mnt/hgfs/uboot
TOPDIR  = /mnt/hgfs/uboot
LNDIR  = /mnt/hgfs/uboot
说明:OBJTREE 和LNDIR为存放生成文件的目录
MKCONFIG  = /mnt/hgfs/uboot/mkconfig
obj  =  
src  =  
CROSS_COMPILE  = arm-linux-
OBJS  = cpu/arm920t/start.o
LIBS  = lib_generic/libgeneric.a board/smdk 2410/libsmdk2410.a cpu/arm920t/libarm920t.a  
cpu/arm920t/s3c24x0/libs3c24x0.a  lib_arm/libarm.a common/libcommon.a
ARCH  = arm
CPU  = arm920t
BOARD  = smdk2410
SOC  = s3c24x0
CONFIG_SHELL  = /bin/sh
HPATH  =  
HOSTCC  = gcc
HOSTCFLAGS  = -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer
CROSS_COMPILE  = arm-linux-
AS  = arm-linux-as
LD  = arm-linux-ld
CC  = arm-linux-gcc
CPP  = arm-linux-gcc -E
AR  = arm-linux-ar
NM  = arm-linux-nm
STRIP  = arm-linux-strip
OBJCOPY  = arm-linux-objcopy
OBJDUMP  = arm-linux-objdump
MAKE  = make
TEXT_BASE  = 0x33D80000
PLATFORM_CPPFLAGS  =  -DCONFIG_ARM -D__ARM__
PLATFORM_RELFLAGS  = 
 CPPFLAGS  = -g  -Os   -D__KERNEL__ -DTEXT_BASE=0x33D80000   
-I/mnt/hgfs/uboot/include -fno-builtin -ffreestanding -nostdinc    
-isystem /usr/local/arm/4.3.2/ bin/../lib/gcc/arm-none-linux-gn ueabi/4.3.2/include -pipe   
-DCONFIG_ARM -D__ARM__
 CFLAGS  = -g  -Os   -D__ KERNEL__ -DTEXT_BASE=0x33D80000   
-I/mnt/hgfs/uboot/include -fno-builtin -ffreestanding -nostdinc  
-isystem /usr/local/arm/4.3.2/ bin/../lib/gcc/arm-none-linux-gn ueabi/4.3.2/include -pipe   
-DCONFIG_ARM -D__ARM__ -Wall -Wstrict-prototypes
 AFLAGS  =  -D__ASSEMBLY__ -g  -Os   -D__KERNEL__ -DTEXT_BASE=0x33D80000   
-I/mnt/hgfs/uboot/include -fno-builtin -ffreestanding -nostdinc  
-isystem /usr/local/arm/4.3. 2/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.2/include -pipe  
-DCONFIG_ARM -D__ARM__ 

抱歉!评论已关闭.