- Timestamp:
- 2009-03-07T20:36:15Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9482bf0b
- Parents:
- 1515522
- Location:
- kernel/arch
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/amd64/Makefile.inc
r1515522 r1c6b3a2 47 47 # 48 48 49 ifeq ($( MACHINE),opteron)49 ifeq ($(PROCESSOR),opteron) 50 50 CMN2 := -march=opteron 51 51 GCC_CFLAGS += $(CMN2) -
kernel/arch/ia32/Makefile.inc
r1515522 r1c6b3a2 46 46 # 47 47 48 ifeq ($( MACHINE),athlon_xp)48 ifeq ($(PROCESSOR),athlon_xp) 49 49 CMN2 = -march=athlon-xp 50 50 SUNCC_CFLAGS += -xarch=ssea 51 51 endif 52 ifeq ($( MACHINE),athlon_mp)52 ifeq ($(PROCESSOR),athlon_mp) 53 53 CMN2 = -march=athlon-mp 54 54 SUNCC_CFLAGS += xarch=ssea 55 55 endif 56 ifeq ($( MACHINE),pentium3)56 ifeq ($(PROCESSOR),pentium3) 57 57 CMN2 = -march=pentium3 58 58 SUNCC_CFLAGS += -xarch=sse 59 59 endif 60 ifeq ($( MACHINE),pentium4)60 ifeq ($(PROCESSOR),pentium4) 61 61 CMN2 = -march=pentium4 62 62 SUNCC_CFLAGS += -xarch=sse2 63 63 endif 64 ifeq ($( MACHINE),core)64 ifeq ($(PROCESSOR),core) 65 65 CMN2 = -march=prescott 66 66 SUNCC_CFLAGS += -xarch=sse3 -
kernel/arch/sparc64/Makefile.inc
r1515522 r1c6b3a2 43 43 DEFS += -D__64_BITS__ 44 44 45 ifeq ($( MACHINE),us)45 ifeq ($(PROCESSOR),us) 46 46 DEFS += -DUS 47 47 endif 48 48 49 ifeq ($( MACHINE),us3)49 ifeq ($(PROCESSOR),us3) 50 50 DEFS += -DUS3 51 51 endif
Note:
See TracChangeset
for help on using the changeset viewer.