Changes in kernel/Makefile [f0d7bd9:9d58539] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/Makefile
rf0d7bd9 r9d58539 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 … … 196 208 generic/src/console/chardev.c \ 197 209 generic/src/console/console.c \ 198 generic/src/console/prompt.c \199 210 generic/src/cpu/cpu.c \ 200 211 generic/src/ddi/ddi.c \
Note:
See TracChangeset
for help on using the changeset viewer.