Changeset 20e1bdfc in rtems


Ignore:
Timestamp:
09/15/08 17:43:22 (16 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 5, master
Children:
182674ed
Parents:
4fcb2f17
Message:

2008-09-15 Joel Sherrill <joel.sherrill@…>

  • leaf.cfg: LINK.c and LINK.cc include LDFLAGS so do not include it in make-exe and make-cxx-exe definitions. This was resulting in the linker script being processed twice and breaking some BSPs.
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • c/src/make/ChangeLog

    r4fcb2f17 r20e1bdfc  
     12008-09-15      Joel Sherrill <joel.sherrill@oarcorp.com>
     2
     3        * leaf.cfg: LINK.c and LINK.cc include LDFLAGS so do not include it in
     4        make-exe and make-cxx-exe definitions. This was resulting in the
     5        linker script being processed twice and breaking some BSPs.
     6
    172008-09-09      Joel Sherrill <joel.sherrill@OARcorp.com>
    28
  • c/src/make/leaf.cfg

    r4fcb2f17 r20e1bdfc  
    6767
    6868define bsp-link-c
    69         $(LINK.c) $(CPU_CFLAGS) $(AM_CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \
     69        $(LINK.c) $(CPU_CFLAGS) $(AM_CFLAGS) $(AM_LDFLAGS) \
    7070            -o $(basename $@).exe $(LINK_OBJS) $(LINK_LIBS)
    7171endef
    7272
    7373define bsp-link-cxx
    74         $(LINK.cc) $(CPU_CFLAGS) $(AM_CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \
     74        $(LINK.cc) $(CPU_CFLAGS) $(AM_CFLAGS) $(AM_LDFLAGS) \
    7575            -o $(basename $@).exe $(LINK_OBJS) $(LINK_LIBS)
    7676endef
  • make/ChangeLog

    r4fcb2f17 r20e1bdfc  
     12008-09-15      Joel Sherrill <joel.sherrill@oarcorp.com>
     2
     3        * leaf.cfg: LINK.c and LINK.cc include LDFLAGS so do not include it in
     4        make-exe and make-cxx-exe definitions. This was resulting in the
     5        linker script being processed twice and breaking some BSPs.
     6
    172008-09-09      Joel Sherrill <joel.sherrill@OARcorp.com>
    28
  • make/leaf.cfg

    r4fcb2f17 r20e1bdfc  
    118118
    119119define bsp-link-c
    120         $(LINK.c) $(CPU_CFLAGS) $(AM_CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \
     120        $(LINK.c) $(CPU_CFLAGS) $(AM_CFLAGS) $(AM_LDFLAGS) \
    121121            -o $(basename $@).exe $(LINK_OBJS) $(LINK_LIBS)
    122122endef
    123123
    124124define bsp-link-cxx
    125         $(LINK.cc) $(CPU_CFLAGS) $(AM_CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \
     125        $(LINK.cc) $(CPU_CFLAGS) $(AM_CFLAGS) $(AM_LDFLAGS) \
    126126            -o $(basename $@).exe $(LINK_OBJS) $(LINK_LIBS)
    127127endef
Note: See TracChangeset for help on using the changeset viewer.