Changes in boot/Makefile.build [9ded977:4872160] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/Makefile.build
r9ded977 r4872160 41 41 -Wall -Wextra -Wno-unused-parameter -Wmissing-prototypes \ 42 42 -Werror-implicit-function-declaration -Wwrite-strings \ 43 - pipe43 -Werror -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 - wd17047 -Werror-implicit-function-declaration -Werror -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 += -Werror62 ICC_CFLAGS += -Werror63 endif64 65 ifeq ($(CONFIG_LINE_DEBUG),y)66 GCC_CFLAGS += -g67 ICC_CFLAGS += -g68 SUNCC_CFLAGS += -g69 CLANG_CFLAGS += -g70 endif71 59 72 60 ifeq ($(COMPILER),gcc_native) … … 113 101 $(LD) -N $(LFLAGS) -T $(LINK) -M -Map $(MAP) -o $@ $(COMPONENT_OBJECTS) $(OBJECTS) 114 102 115 $(LINK): $(LINK).comp $(DEPEND)116 $(GCC) $(DEFS) $(GCC_CFLAGS) -D__ASM__ -D__LINKER__ -E -x c $(LINK).comp | grep -v "^\#" > $(LINK)117 118 103 %.o: %.S $(DEPEND) 119 104 $(CC) $(DEFS) $(CFLAGS) -D__ASM__ -c $< -o $@
Note:
See TracChangeset
for help on using the changeset viewer.