Changes in kernel/Makefile [2689a0b:9d58539] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/Makefile
r2689a0b 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
Note:
See TracChangeset
for help on using the changeset viewer.