Changeset 20235a3 in mainline for boot/Makefile.build


Ignore:
Timestamp:
2010-09-02T20:55:28Z (15 years ago)
Author:
Jakub Jermar <jakub@…>
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.
Message:

Merge mainline changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • boot/Makefile.build

    r0c61955 r20235a3  
    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.