Changeset 934b2e0 in mainline
- Timestamp:
- 2008-06-18T21:24:11Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7a4202d
- Parents:
- 18ad03f3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia32/Makefile.inc
r18ad03f3 r934b2e0 47 47 48 48 ifeq ($(MACHINE),athlon-xp) 49 CMN2 = -march=athlon-xp -m mmx -msse -m3dnow49 CMN2 = -march=athlon-xp -mno-mmx -mno-sse -mno-3dnow 50 50 GCC_CFLAGS += $(CMN2) 51 51 ICC_CFLAGS += $(CMN2) … … 56 56 endif 57 57 ifeq ($(MACHINE),athlon-mp) 58 CMN2 = -march=athlon-mp -m mmx -msse -m3dnow58 CMN2 = -march=athlon-mp -mno-mmx -mno-sse -mno-3dnow 59 59 GCC_CFLAGS += $(CMN2) 60 60 ICC_CFLAGS += $(CMN2) … … 64 64 endif 65 65 ifeq ($(MACHINE),pentium3) 66 CMN2 = -march=pentium3 -m mmx -msse66 CMN2 = -march=pentium3 -mno-mmx -mno-sse 67 67 GCC_CFLAGS += $(CMN2) 68 68 ICC_CFLAGS += $(CMN2) … … 72 72 endif 73 73 ifeq ($(MACHINE),core) 74 CMN2 = -march=prescott -m fpmath=sse -mmmx -msse -msse2 -msse374 CMN2 = -march=prescott -mno-mmmx -mno-sse -mno-sse2 -mno-sse3 75 75 GCC_CFLAGS += $(CMN2) 76 76 ICC_CFLAGS += $(CMN2) … … 79 79 endif 80 80 ifeq ($(MACHINE),pentium4) 81 GCC_CFLAGS += -march=pentium4 -m fpmath=sse -mmmx -msse -msse281 GCC_CFLAGS += -march=pentium4 -mno-mmx -mno-sse -mno-sse2 82 82 ICC_CFLAGS += -march=pentium4 83 83 SUNCC_CFLAGS += -xarch=sse2
Note:
See TracChangeset
for help on using the changeset viewer.