Changes in kernel/Makefile [2689a0b:c0699467] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/Makefile
r2689a0b rc0699467 90 90 endif 91 91 92 DEFS = -DKERNEL -DRELEASE=$(RELEASE) "-D COPYRIGHT=$(COPYRIGHT)" "-DNAME=$(NAME)" -D__$(BITS)_BITS__ -D__$(ENDIANESS)__92 DEFS = -DKERNEL -DRELEASE=$(RELEASE) "-DNAME=$(NAME)" -D__$(BITS)_BITS__ -D__$(ENDIANESS)__ 93 93 94 94 GCC_CFLAGS = -I$(INCLUDES) -O$(OPTIMIZATION) -imacros $(CONFIG_HEADER) \ … … 103 103 -Werror-implicit-function-declaration -wd170 104 104 105 SUNCC_CFLAGS = -I$(INCLUDES) -xO$(OPTIMIZATION) \ 106 -xnolib -xc99=all -features=extensions \ 107 -erroff=E_ZERO_SIZED_STRUCT_UNION 108 105 109 CLANG_CFLAGS = -I$(INCLUDES) -O$(OPTIMIZATION) -imacros $(CONFIG_HEADER) \ 106 110 -fexec-charset=UTF-8 -fwide-exec-charset=UTF-32$(ENDIANESS) \ … … 122 126 GCC_CFLAGS += -g 123 127 ICC_CFLAGS += -g 128 SUNCC_CFLAGS += -g 124 129 CLANG_CFLAGS += -g 125 130 endif … … 175 180 CFLAGS = $(ICC_CFLAGS) 176 181 DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS) 182 INSTRUMENTATION = 183 endif 184 185 ifeq ($(COMPILER),suncc) 186 CFLAGS = $(SUNCC_CFLAGS) 187 DEFS += $(CONFIG_DEFS) 188 DEPEND_DEFS = $(DEFS) 177 189 INSTRUMENTATION = 178 190 endif … … 217 229 generic/src/syscall/syscall.c \ 218 230 generic/src/syscall/copy.c \ 219 generic/src/mm/km.c \220 231 generic/src/mm/reserve.c \ 221 232 generic/src/mm/buddy.c \ … … 234 245 generic/src/lib/str.c \ 235 246 generic/src/lib/elf.c \ 236 generic/src/lib/ra.c \237 247 generic/src/lib/rd.c \ 238 248 generic/src/printf/printf_core.c \
Note:
See TracChangeset
for help on using the changeset viewer.