Changes in kernel/arch/ia32/Makefile.inc [ac47b7c2:62baed17] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia32/Makefile.inc
rac47b7c2 r62baed17 27 27 # 28 28 29 ## Toolchain configuration30 #31 32 29 BFD_NAME = elf32-i386 33 30 BFD_ARCH = i386 34 31 BFD = binary 35 TARGET = i686-pc-linux-gnu 36 TOOLCHAIN_DIR = $(CROSS_PREFIX)/i686 32 CLANG_ARCH = i386 37 33 38 34 BITS = 32 … … 43 39 ICC_CFLAGS += $(CMN1) 44 40 SUNCC_CFLAGS += $(CMN1) 41 CLANG_CFLAGS += $(CMN1) 45 42 46 43 ## Accepted CPUs … … 51 48 SUNCC_CFLAGS += -xarch=ssea 52 49 endif 50 53 51 ifeq ($(PROCESSOR),athlon_mp) 54 52 CMN2 = -march=athlon-mp 55 53 SUNCC_CFLAGS += xarch=ssea 56 54 endif 55 57 56 ifeq ($(PROCESSOR),pentium3) 58 57 CMN2 = -march=pentium3 59 58 SUNCC_CFLAGS += -xarch=sse 60 59 endif 60 61 61 ifeq ($(PROCESSOR),pentium4) 62 62 CMN2 = -march=pentium4 63 63 SUNCC_CFLAGS += -xarch=sse2 64 64 endif 65 65 66 ifeq ($(PROCESSOR),core) 66 67 CMN2 = -march=prescott … … 71 72 GCC_CFLAGS += $(CMN2) 72 73 ICC_CFLAGS += $(CMN2) 74 CLANG_CFLAGS += $(CMN2) 73 75 74 76 ARCH_SOURCES = \ 75 77 arch/$(KARCH)/src/context.S \ 76 arch/$(KARCH)/src/debug/panic.s \ 78 arch/$(KARCH)/src/debug/stacktrace.c \ 79 arch/$(KARCH)/src/debug/stacktrace_asm.S \ 77 80 arch/$(KARCH)/src/delay.s \ 78 81 arch/$(KARCH)/src/asm.S \
Note:
See TracChangeset
for help on using the changeset viewer.