Changeset 89c57b6 in mainline for boot/Makefile.build


Ignore:
Timestamp:
2011-04-13T14:45:41Z (14 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
88634420
Parents:
cefb126 (diff), 17279ead (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.
Message:

Merge mainline changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • boot/Makefile.build

    rcefb126 r89c57b6  
    6363endif
    6464
     65ifeq ($(CONFIG_LINE_DEBUG),y)
     66        GCC_CFLAGS += -g
     67        ICC_CFLAGS += -g
     68        SUNCC_CFLAGS += -g
     69        CLANG_CFLAGS += -g
     70endif
     71
    6572ifeq ($(COMPILER),gcc_native)
    6673        CFLAGS = $(GCC_CFLAGS) $(EXTRA_CFLAGS)
     
    106113        $(LD) -N $(LFLAGS) -T $(LINK) -M -Map $(MAP) -o $@ $(COMPONENT_OBJECTS) $(OBJECTS)
    107114
     115$(LINK): $(LINK).comp $(DEPEND)
     116        $(GCC) $(DEFS) $(GCC_CFLAGS) -D__ASM__ -D__LINKER__ -E -x c $(LINK).comp | grep -v "^\#" > $(LINK)
     117
    108118%.o: %.S $(DEPEND)
    109119        $(CC) $(DEFS) $(CFLAGS) -D__ASM__ -c $< -o $@
Note: See TracChangeset for help on using the changeset viewer.