Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 4046 → Rev 4047

/trunk/kernel/arch/sparc64/Makefile.inc
42,11 → 42,11
 
DEFS += -D__64_BITS__
 
ifeq ($(MACHINE),us)
ifeq ($(PROCESSOR),us)
DEFS += -DUS
endif
 
ifeq ($(MACHINE),us3)
ifeq ($(PROCESSOR),us3)
DEFS += -DUS3
endif
 
/trunk/kernel/arch/amd64/Makefile.inc
46,7 → 46,7
## Accepted CPUs
#
 
ifeq ($(MACHINE),opteron)
ifeq ($(PROCESSOR),opteron)
CMN2 := -march=opteron
GCC_CFLAGS += $(CMN2)
ICC_CFLAGS += $(CMN2)
/trunk/kernel/arch/ia32/Makefile.inc
45,23 → 45,23
## Accepted CPUs
#
 
ifeq ($(MACHINE),athlon_xp)
ifeq ($(PROCESSOR),athlon_xp)
CMN2 = -march=athlon-xp
SUNCC_CFLAGS += -xarch=ssea
endif
ifeq ($(MACHINE),athlon_mp)
ifeq ($(PROCESSOR),athlon_mp)
CMN2 = -march=athlon-mp
SUNCC_CFLAGS += xarch=ssea
endif
ifeq ($(MACHINE),pentium3)
ifeq ($(PROCESSOR),pentium3)
CMN2 = -march=pentium3
SUNCC_CFLAGS += -xarch=sse
endif
ifeq ($(MACHINE),pentium4)
ifeq ($(PROCESSOR),pentium4)
CMN2 = -march=pentium4
SUNCC_CFLAGS += -xarch=sse2
endif
ifeq ($(MACHINE),core)
ifeq ($(PROCESSOR),core)
CMN2 = -march=prescott
SUNCC_CFLAGS += -xarch=sse3
endif