⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 arch.i386

📁 MAKEFILE 经典编写方法
💻 I386
字号:
.EXPORT_ALL_VARIABLES:############################################################################## Vendor specific settings#CONSOLE_BAUD_RATE = 19200############################################################################## The makefiles need to know how to do things in different contexts# To save some pain we put it all here## First settings we always want for all build## ARCH = kernel,  TARGET_ARCH = uClibcMACHINE       = i386ARCH          = i386CROSS_COMPILE = CROSS         = $(CROSS_COMPILE)# We've used -m5307 here because the bulk of the 5272 instruction timings# happen to be closer to the 5307 than the 5200 series.  Luckily, the# actual instructions on the two processors are essentially identical.# This should be fixed at some stage.CPUFLAGS  =CC        = $(CROSS_COMPILE)gcc AS        = $(CROSS_COMPILE)asCXX       = $(CROSS_COMPILE)g++ AR        = $(CROSS_COMPILE)arLD        = $(CROSS_COMPILE)ldOBJCOPY   = $(CROSS_COMPILE)objcopyRANLIB    = $(CROSS_COMPILE)ranlibSTRIPTOOL = $(CROSS_COMPILE)stripSTRIP     = $(STRIPTOOL)UCLINUX_BUILD_SET = 0					# have we set a special config below############################################################################## General purpose lib building rules,  uClibc.config uses these when# possible############################################################################### Settings for building user apps#	CFLAGS  = -Wall -Wstrict-prototypes -O0 -DSERIAL_USE_TTYS0	#CFLAGS  =  -Wstrict-prototypes -g 	LDFLAGS  = -m elf_i386 ############################################################################## fall through,  do other config options perhaps#ifeq ($(UCLINUX_BUILD_SET),1)endif############################################################################

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -