Changeset 52d30c4 in mainline for kernel/arch/ia32
- Timestamp:
- 2007-06-05T21:24:40Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4a8635b
- Parents:
- 92d349c8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia32/Makefile.inc
r92d349c8 r52d30c4 37 37 38 38 DEFS += -DMACHINE=$(MACHINE) -D__32_BITS__ 39 SUNCC_CFLAGS = -m32 39 40 40 41 ## Accepted CPUs … … 42 43 43 44 ifeq ($(MACHINE),athlon-xp) 44 CFLAGS += -march=athlon-xp -mmmx -msse -m3dnow45 GCC_CFLAGS += -march=athlon-xp -mmmx -msse -m3dnow 45 46 DEFS += -DCONFIG_FENCES_P3 46 47 CONFIG_SMP = n … … 48 49 endif 49 50 ifeq ($(MACHINE),athlon-mp) 50 CFLAGS += -march=athlon-mp -mmmx -msse -m3dnow51 GCC_CFLAGS += -march=athlon-mp -mmmx -msse -m3dnow 51 52 DEFS += -DCONFIG_FENCES_P3 52 53 CONFIG_HT = n 53 54 endif 54 55 ifeq ($(MACHINE),pentium3) 55 CFLAGS += -march=pentium3 -mmmx -msse56 GCC_CFLAGS += -march=pentium3 -mmmx -msse 56 57 DEFS += -DCONFIG_FENCES_P3 57 58 CONFIG_HT = n 58 59 endif 59 60 ifeq ($(MACHINE),prescott) 60 CFLAGS += -march=pentium4 -mfpmath=sse -mmmx -msse -msse2 -msse361 GCC_CFLAGS += -march=pentium4 -mfpmath=sse -mmmx -msse -msse2 -msse3 61 62 DEFS += -DCONFIG_FENCES_P4 62 63 endif 63 64 ifeq ($(MACHINE),pentium4) 64 65 ifeq ($(COMPILER),icc_native) 65 CFLAGS += -march=pentium466 GCC_CFLAGS += -march=pentium4 66 67 else 67 CFLAGS += -march=pentium4 -mfpmath=sse -mmmx -msse -msse268 GCC_CFLAGS += -march=pentium4 -mfpmath=sse -mmmx -msse -msse2 68 69 endif 69 70 DEFS += -DCONFIG_FENCES_P4
Note:
See TracChangeset
for help on using the changeset viewer.