Changeset ff50f40 in mainline for kernel/arch/ia32xen
- Timestamp:
- 2009-01-18T20:35:22Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b1747a5
- Parents:
- d4668392
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia32xen/Makefile.inc
rd4668392 rff50f40 51 51 52 52 ifeq ($(MACHINE),athlon-xp) 53 CMN2 = -march=athlon-xp -mmmx -msse -m3dnow 54 GCC_CFLAGS += $(CMN2) 55 ICC_CFLAGS += $(CMN2) 53 CMN2 = -march=athlon-xp 56 54 SUNCC_CFLAGS += -xarch=ssea 57 55 DEFS += -DCONFIG_FENCES_P3 … … 60 58 endif 61 59 ifeq ($(MACHINE),athlon-mp) 62 CMN2 = -march=athlon-mp -mmmx -msse -m3dnow 63 GCC_CFLAGS += $(CMN2) 64 ICC_CFLAGS += $(CMN2) 65 SUNCC_CFLAGS += -xarch=ssea 60 CMN2 = -march=athlon-mp 61 SUNCC_CFLAGS += xarch=ssea 66 62 DEFS += -DCONFIG_FENCES_P3 67 63 CONFIG_HT = n 68 64 endif 69 65 ifeq ($(MACHINE),pentium3) 70 CMN2 = -march=pentium3 -mmmx -msse 71 GCC_CFLAGS += $(CMN2) 72 ICC_CFLAGS += $(CMN2) 66 CMN2 = -march=pentium3 73 67 SUNCC_CFLAGS += -xarch=sse 74 68 DEFS += -DCONFIG_FENCES_P3 75 69 CONFIG_HT = n 76 70 endif 71 ifeq ($(MACHINE),pentium4) 72 CMN2 = -march=pentium4 73 SUNCC_CFLAGS += -xarch=sse2 74 DEFS += -DCONFIG_FENCES_P4 75 endif 77 76 ifeq ($(MACHINE),core) 78 CMN2 = -march=prescott -mfpmath=sse -mmmx -msse -msse2 -msse3 79 GCC_CFLAGS += $(CMN2) 80 ICC_CFLAGS += $(CMN2) 77 CMN2 = -march=prescott 81 78 SUNCC_CFLAGS += -xarch=sse3 82 79 DEFS += -DCONFIG_FENCES_P4 83 80 endif 84 ifeq ($(MACHINE),pentium4) 85 GCC_CFLAGS += -march=pentium4 -mfpmath=sse -mmmx -msse -msse2 86 ICC_CFLAGS += -march=pentium4 87 SUNCC_CFLAGS += -xarch=sse2 88 DEFS += -DCONFIG_FENCES_P4 89 endif 81 82 FPU_NO_CFLAGS = -mno-mmx -mno-sse -mno-sse2 -mno-sse3 -mno-3dnow 83 GCC_CFLAGS += $(CMN2) 84 ICC_CFLAGS += $(CMN2) 90 85 91 86 ## Own configuration directives
Note:
See TracChangeset
for help on using the changeset viewer.