Changeset e2b73d4f in mainline for kernel/arch
- Timestamp:
- 2010-03-21T09:25:29Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 19f857a
- Parents:
- facebd56 (diff), 4e9aaf5 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - Location:
- kernel/arch
- Files:
-
- 10 edited
-
abs32le/Makefile.inc (modified) (1 diff)
-
amd64/Makefile.inc (modified) (1 diff)
-
arm32/Makefile.inc (modified) (1 diff)
-
arm32/src/dummy.S (modified) (1 diff)
-
ia32/Makefile.inc (modified) (2 diffs)
-
ia32/include/types.h (modified) (2 diffs)
-
ia64/Makefile.inc (modified) (1 diff)
-
mips32/Makefile.inc (modified) (2 diffs)
-
ppc32/Makefile.inc (modified) (1 diff)
-
sparc64/Makefile.inc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/abs32le/Makefile.inc
rfacebd56 re2b73d4f 27 27 # 28 28 29 ## Toolchain configuration30 #31 32 29 BFD = binary 33 30 34 31 ifeq ($(COMPILER),gcc_cross) 35 TOOLCHAIN_DIR = $(CROSS_PREFIX)/$(CROSS_TARGET)36 37 32 ifeq ($(CROSS_TARGET),arm32) 38 TARGET = arm-linux-gnu39 33 ATSIGN = % 40 34 endif 41 35 42 ifeq ($(CROSS_TARGET),ia32)43 TARGET = i686-pc-linux-gnu44 endif45 46 36 ifeq ($(CROSS_TARGET),mips32) 47 TARGET = mipsel-linux-gnu48 37 GCC_CFLAGS += -mno-abicalls 49 38 endif -
kernel/arch/amd64/Makefile.inc
rfacebd56 re2b73d4f 27 27 # 28 28 29 ## Toolchain configuration30 #31 32 29 BFD_NAME = elf64-x86-64 33 30 BFD_ARCH = i386:x86-64 34 31 BFD = binary 35 TARGET = amd64-linux-gnu36 32 CLANG_ARCH = x86_64 37 TOOLCHAIN_DIR = $(CROSS_PREFIX)/amd6438 33 39 34 FPU_NO_CFLAGS = -mno-sse -mno-sse2 -
kernel/arch/arm32/Makefile.inc
rfacebd56 re2b73d4f 27 27 # 28 28 29 ## Toolchain configuration30 #31 32 29 BFD_NAME = elf32-littlearm 33 30 BFD_ARCH = arm 34 31 BFD = binary 35 TARGET = arm-linux-gnu36 TOOLCHAIN_DIR = $(CROSS_PREFIX)/arm3237 32 38 33 ATSIGN = % -
kernel/arch/arm32/src/dummy.S
rfacebd56 re2b73d4f 1 1 # 2 # Copyright (c) 2007 Michal Kebr y, Pavel Jancik, Petr Stepan2 # Copyright (c) 2007 Michal Kebrt, Pavel Jancik, Petr Stepan 3 3 # All rights reserved. 4 4 # -
kernel/arch/ia32/Makefile.inc
rfacebd56 re2b73d4f 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-gnu36 32 CLANG_ARCH = i386 37 TOOLCHAIN_DIR = $(CROSS_PREFIX)/ia3238 33 39 34 BITS = 32 … … 53 48 SUNCC_CFLAGS += -xarch=ssea 54 49 endif 50 55 51 ifeq ($(PROCESSOR),athlon_mp) 56 52 CMN2 = -march=athlon-mp 57 53 SUNCC_CFLAGS += xarch=ssea 58 54 endif 55 59 56 ifeq ($(PROCESSOR),pentium3) 60 57 CMN2 = -march=pentium3 61 58 SUNCC_CFLAGS += -xarch=sse 62 59 endif 60 63 61 ifeq ($(PROCESSOR),pentium4) 64 62 CMN2 = -march=pentium4 65 63 SUNCC_CFLAGS += -xarch=sse2 66 64 endif 65 67 66 ifeq ($(PROCESSOR),core) 68 67 CMN2 = -march=prescott -
kernel/arch/ia32/include/types.h
rfacebd56 re2b73d4f 27 27 */ 28 28 29 /** @addtogroup ia32 29 /** @addtogroup ia32 30 30 * @{ 31 31 */ … … 36 36 #define KERN_ia32_TYPES_H_ 37 37 38 typedef signed char int8_t; 39 typedef signed short int16_t; 40 typedef signed long int32_t; 41 typedef signed long long int64_t; 42 43 typedef unsigned char uint8_t; 44 typedef unsigned short uint16_t; 45 typedef unsigned long uint32_t; 46 typedef unsigned long long uint64_t; 38 #include <arch/common.h> 47 39 48 40 typedef uint32_t size_t; -
kernel/arch/ia64/Makefile.inc
rfacebd56 re2b73d4f 27 27 # 28 28 29 ## Toolchain configuration30 #31 32 29 BFD_NAME = elf64-little 33 30 BFD_ARCH = ia64-elf64 34 TARGET = ia64-pc-linux-gnu35 TOOLCHAIN_DIR = $(CROSS_PREFIX)/ia6436 31 37 32 CMN1 = -mconstant-gp -fno-unwind-tables -mfixed-range=f32-f127 -
kernel/arch/mips32/Makefile.inc
rfacebd56 re2b73d4f 27 27 # 28 28 29 ## Toolchain configuration30 #31 32 29 BFD_ARCH = mips 33 30 BFD = binary 34 TARGET = mipsel-linux-gnu35 TOOLCHAIN_DIR = $(CROSS_PREFIX)/mips3236 37 31 GCC_CFLAGS += -mno-abicalls -G 0 -fno-zero-initialized-in-bss -mips3 38 32 … … 48 42 ifeq ($(MACHINE),bgxemul) 49 43 BFD_NAME = elf32-tradbigmips 50 TOOLCHAIN_DIR = $(CROSS_PREFIX)/mips32eb51 TARGET = mips-linux-gnu52 44 ENDIANESS = BE 53 45 GCC_CFLAGS += -D__BE__ -
kernel/arch/ppc32/Makefile.inc
rfacebd56 re2b73d4f 27 27 # 28 28 29 ## Toolchain configuration30 #31 32 29 BFD_NAME = elf32-powerpc 33 30 BFD_ARCH = powerpc:common 34 31 BFD = binary 35 TARGET = ppc-linux-gnu36 TOOLCHAIN_DIR = $(CROSS_PREFIX)/ppc3237 32 38 33 GCC_CFLAGS += -mcpu=powerpc -msoft-float -m32 -
kernel/arch/sparc64/Makefile.inc
rfacebd56 re2b73d4f 27 27 # 28 28 29 ## Toolchain configuration30 #31 32 29 BFD_NAME = elf64-sparc 33 30 BFD_ARCH = sparc 34 31 BFD = binary 35 TARGET = sparc64-linux-gnu36 TOOLCHAIN_DIR = $(CROSS_PREFIX)/sparc6437 32 38 33 GCC_CFLAGS += -m64 -mcpu=ultrasparc
Note:
See TracChangeset
for help on using the changeset viewer.
