Changeset fdfa5b9 in rtems


Ignore:
Timestamp:
01/03/01 18:46:31 (22 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
4dc2e9a
Parents:
c2bbfb52
Message:

2001-01-03 Emmanuel Raguet <raguet@…>

  • custom/mcp750.cfg (make-exe): Rewrite to avoid writing to install point or assuming BSP build tree is available.
Location:
make
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • make/ChangeLog

    rc2bbfb52 rfdfa5b9  
     1
     22001-01-03      Emmanuel Raguet <raguet@crf.canon.fr>
     3
     4        * custom/mcp750.cfg (make-exe): Rewrite to avoid writing to
     5        install point or assuming BSP build tree is available.
    16
    272001-01-03      Joel Sherrill <joel@OARcorp.com>
  • make/custom/mcp750.cfg

    rc2bbfb52 rfdfa5b9  
    7676#           -Wl,-\( -Wl,-lc -Wl,-lrtemsall -Wl,-lgcc -Wl,-\)
    7777define make-exe
    78         $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) \
    79            -o $@ $(LINK_OBJS) $(LINK_LIBS)
    80         $(NM) -g -n $@ > $(basename $@).num
    81         $(SIZE) $@
    82         test -d ${PROJECT_RELEASE}/bin || mkdir ${PROJECT_RELEASE}/bin
    83         cp $@ $(PROJECT_ROOT)/c/mcp750/lib/libbsp/powerpc/$(RTEMS_BSP_FAMILY)/bootloader/$(ARCH); \
    84         ( cd $(PROJECT_ROOT)/c/mcp750/lib/libbsp/powerpc/$(RTEMS_BSP_FAMILY)/bootloader; \
    85         $(MAKE) bootloader BINARY_LOADED=$@; )
    86         f=`basename $@ .exe`; \
    87         cp $(PROJECT_ROOT)/c/mcp750/lib/libbsp/powerpc/$(RTEMS_BSP_FAMILY)/bootloader/bootloader \
    88             ${PROJECT_RELEASE}/bin/$${f}$(LIB_VARIANT).exe \
    89         && chmod 755 \
    90           ${PROJECT_RELEASE}/bin/$${f}$(LIB_VARIANT).exe
     78        $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) \
     79           -o $(basename $@).nxe $(LINK_OBJS) $(LINK_LIBS)
     80        $(NM) -g -n $(basename $@).nxe > $(basename $@).num
     81        $(SIZE) $(basename $@).nxe
     82        $(OBJCOPY) $(basename $@).nxe rtems -O binary -R .comment -S
     83        gzip -vf9 rtems
     84        $(LD) -o $@ $(PROJECT_RELEASE)/lib/bootloader.o --just-symbols=$(basename $@).nxe \
     85        -b binary rtems.gz -T $(PROJECT_RELEASE)/lib/ppcboot.lds \
     86        -Map $(basename $@).map && chmod 755 $@
     87        rm -f rtems.gz
    9188endef
    9289
Note: See TracChangeset for help on using the changeset viewer.