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