?? arch.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 + -