Changeset 20235a3 in mainline for boot/Makefile.build
- Timestamp:
- 2010-09-02T20:55:28Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0c39b96
- Parents:
- 0c61955 (diff), 3249673 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/Makefile.build
r0c61955 r20235a3 63 63 endif 64 64 65 ifeq ($(CONFIG_LINE_DEBUG),y) 66 GCC_CFLAGS += -g 67 ICC_CFLAGS += -g 68 SUNCC_CFLAGS += -g 69 CLANG_CFLAGS += -g 70 endif 71 65 72 ifeq ($(COMPILER),gcc_native) 66 73 CFLAGS = $(GCC_CFLAGS) $(EXTRA_CFLAGS) … … 106 113 $(LD) -N $(LFLAGS) -T $(LINK) -M -Map $(MAP) -o $@ $(COMPONENT_OBJECTS) $(OBJECTS) 107 114 115 $(LINK): $(LINK).comp $(DEPEND) 116 $(GCC) $(DEFS) $(GCC_CFLAGS) -D__ASM__ -D__LINKER__ -E -x c $(LINK).comp | grep -v "^\#" > $(LINK) 117 108 118 %.o: %.S $(DEPEND) 109 119 $(CC) $(DEFS) $(CFLAGS) -D__ASM__ -c $< -o $@
Note:
See TracChangeset
for help on using the changeset viewer.