Changeset e805e2f in mainline
- Timestamp:
- 2010-05-26T14:59:49Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 938f227
- Parents:
- ffe4a87
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/Makefile.build
rffe4a87 re805e2f 41 41 -Wall -Wextra -Wno-unused-parameter -Wmissing-prototypes \ 42 42 -Werror-implicit-function-declaration -Wwrite-strings \ 43 - Werror -pipe43 -pipe 44 44 45 45 ICC_CFLAGS = -I$(INCLUDES) -O$(OPTIMIZATION) -imacros $(CONFIG_HEADER) \ 46 46 -ffreestanding -fno-builtin -nostdlib -nostdinc -Wall -Wmissing-prototypes \ 47 -Werror-implicit-function-declaration - Werror -wd17047 -Werror-implicit-function-declaration -wd170 48 48 49 49 SUNCC_CFLAGS = -I$(INCLUDES) -xO$(OPTIMIZATION) \ … … 57 57 -Werror-implicit-function-declaration -Wwrite-strings \ 58 58 -pipe -arch $(CLANG_ARCH) 59 60 ifeq ($(CONFIG_DEBUG),y) 61 GCC_CFLAGS += -Werror 62 ICC_CFLAGS += -Werror 63 endif 59 64 60 65 ifeq ($(COMPILER),gcc_native) -
kernel/Makefile
rffe4a87 re805e2f 96 96 -Wall -Wextra -Wno-unused-parameter -Wmissing-prototypes \ 97 97 -Werror-implicit-function-declaration -Wwrite-strings \ 98 - Werror -pipe98 -pipe 99 99 100 100 ICC_CFLAGS = -I$(INCLUDES) -O$(OPTIMIZATION) -imacros $(CONFIG_HEADER) \ 101 101 -ffreestanding -fno-builtin -nostdlib -nostdinc -Wall -Wmissing-prototypes \ 102 -Werror-implicit-function-declaration - Werror -wd170102 -Werror-implicit-function-declaration -wd170 103 103 104 104 SUNCC_CFLAGS = -I$(INCLUDES) -xO$(OPTIMIZATION) \ … … 112 112 -Werror-implicit-function-declaration -Wwrite-strings \ 113 113 -pipe -arch $(CLANG_ARCH) 114 115 ifeq ($(CONFIG_DEBUG),y) 116 GCC_CFLAGS += -Werror 117 ICC_CFLAGS += -Werror 118 endif 114 119 115 120 -include arch/$(KARCH)/Makefile.inc -
uspace/Makefile.common
rffe4a87 re805e2f 115 115 -Wall -Wextra -Wno-clobbered -Wno-unused-parameter -Wmissing-prototypes \ 116 116 -Werror-implicit-function-declaration -Wwrite-strings \ 117 - Werror -pipe -g -D__$(ENDIANESS)__117 -pipe -g -D__$(ENDIANESS)__ 118 118 119 119 ICC_CFLAGS = -I$(LIBC_PREFIX)/include -O$(OPTIMIZATION) -imacros $(CONFIG_HEADER) \ … … 122 122 -Wall -Wextra -Wno-clobbered -Wno-unused-parameter -Wmissing-prototypes \ 123 123 -Werror-implicit-function-declaration -Wwrite-strings \ 124 - Werror -pipe -g -D__$(ENDIANESS)__124 -pipe -g -D__$(ENDIANESS)__ 125 125 126 126 CLANG_CFLAGS = -I$(LIBC_PREFIX)/include -O$(OPTIMIZATION) -imacros $(CONFIG_HEADER) \ … … 131 131 -pipe -g -arch $(CLANG_ARCH) -D__$(ENDIANESS)__ 132 132 133 ifeq ($(CONFIG_DEBUG),y) 134 GCC_CFLAGS += -Werror 135 ICC_CFLAGS += -Werror 136 endif 137 133 138 ## Setup platform configuration 134 139 #
Note:
See TracChangeset
for help on using the changeset viewer.