Changes in kernel/arch/ia32/Makefile.inc [95e370f8:1f5c9c96] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia32/Makefile.inc
r95e370f8 r1f5c9c96 30 30 BFD_ARCH = i386 31 31 BFD = binary 32 CLANG_ARCH = i386 32 33 33 34 BITS = 32 … … 37 38 GCC_CFLAGS += $(CMN1) 38 39 ICC_CFLAGS += $(CMN1) 40 SUNCC_CFLAGS += $(CMN1) 39 41 CLANG_CFLAGS += $(CMN1) 40 42 … … 48 50 ifeq ($(PROCESSOR),athlon_xp) 49 51 CMN2 = -march=athlon-xp 52 SUNCC_CFLAGS += -xarch=ssea 50 53 endif 51 54 52 55 ifeq ($(PROCESSOR),athlon_mp) 53 56 CMN2 = -march=athlon-mp 57 SUNCC_CFLAGS += xarch=ssea 54 58 endif 55 59 56 60 ifeq ($(PROCESSOR),pentium3) 57 61 CMN2 = -march=pentium3 62 SUNCC_CFLAGS += -xarch=sse 58 63 endif 59 64 60 65 ifeq ($(PROCESSOR),pentium4) 61 66 CMN2 = -march=pentium4 67 SUNCC_CFLAGS += -xarch=sse2 62 68 endif 63 69 64 70 ifeq ($(PROCESSOR),core) 65 71 CMN2 = -march=prescott 72 SUNCC_CFLAGS += -xarch=sse3 66 73 endif 67 74 … … 92 99 arch/$(KARCH)/src/userspace.c \ 93 100 arch/$(KARCH)/src/cpu/cpu.c \ 94 arch/$(KARCH)/src/mm/km.c \95 101 arch/$(KARCH)/src/mm/as.c \ 96 102 arch/$(KARCH)/src/mm/frame.c \ … … 104 110 arch/$(KARCH)/src/boot/memmap.c \ 105 111 arch/$(KARCH)/src/fpu_context.c \ 112 arch/$(KARCH)/src/debugger.c \ 106 113 arch/$(KARCH)/src/syscall.c
Note:
See TracChangeset
for help on using the changeset viewer.