Changeset c31e536 in mainline
- Timestamp:
- 2007-05-31T21:05:40Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 67f5fbd9
- Parents:
- f6d2c81
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
HelenOS.config
rf6d2c81 rc31e536 22 22 23 23 # Compiler 24 @ "cross" Cross-compiler 25 @ "native" Native 24 @ "gcc_cross" GCC Cross-compiler 25 @ "gcc_native" GCC Native 26 @ "icc_native" ICC Native 26 27 ! COMPILER (choice) 27 28 -
kernel/Makefile
rf6d2c81 rc31e536 38 38 39 39 DEFS = -D$(ARCH) -DARCH=\"$(ARCH)\" -DRELEASE=\"$(RELEASE)\" "-DNAME=\"$(NAME)\"" -DKERNEL 40 CFLAGS = -fno-builtin -fomit-frame-pointer -Wall -W error-implicit-function-declaration -Wmissing-prototypes -Werror -O3 -nostdlib -nostdinc -Igeneric/include/40 CFLAGS = -fno-builtin -fomit-frame-pointer -Wall -Wmissing-prototypes -Werror -O3 -nostdlib -nostdinc -Igeneric/include/ 41 41 LFLAGS = -M 42 42 AFLAGS = … … 119 119 # 120 120 121 ifeq ($(COMPILER), native)121 ifeq ($(COMPILER),gcc_native) 122 122 CC = gcc 123 123 AS = as … … 126 126 OBJDUMP = objdump 127 127 LIBDIR = /usr/lib 128 else 128 endif 129 130 ifeq ($(COMPILER),icc_native) 131 CC = icc 132 AS = as 133 LD = ld 134 OBJCOPY = objcopy 135 OBJDUMP = objdump 136 LIBDIR = /usr/lib 137 endif 138 139 ifeq ($(COMPILER),gcc_cross) 129 140 CC = $(TOOLCHAIN_DIR)/bin/$(TARGET)-gcc 130 141 AS = $(TOOLCHAIN_DIR)/bin/$(TARGET)-as -
kernel/kernel.config
rf6d2c81 rc31e536 14 14 15 15 # Compiler 16 @ "cross" Cross-compiler 17 @ "native" Native 16 @ "gcc_cross" GCC Cross-compiler 17 @ "gcc_native" GCC Native 18 @ "icc_native" ICC Native 18 19 ! COMPILER (choice) 19 20
Note:
See TracChangeset
for help on using the changeset viewer.