Changeset c31e536 in mainline for kernel/Makefile
- 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
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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
Note:
See TracChangeset
for help on using the changeset viewer.