mirror of
https://github.com/t-crest/rtems.git
synced 2025-11-16 12:34:47 +00:00
2001-01-03 Emmanuel Raguet <raguet@crf.canon.fr>
* custom/mcp750.cfg (make-exe): Rewrite to avoid writing to install point or assuming BSP build tree is available.
This commit is contained in:
@@ -1,4 +1,9 @@
|
||||
|
||||
2001-01-03 Emmanuel Raguet <raguet@crf.canon.fr>
|
||||
|
||||
* custom/mcp750.cfg (make-exe): Rewrite to avoid writing to
|
||||
install point or assuming BSP build tree is available.
|
||||
|
||||
2001-01-03 Joel Sherrill <joel@OARcorp.com>
|
||||
|
||||
* custom/psim.cfg: Removed unused variables.
|
||||
|
||||
@@ -75,19 +75,16 @@ CFLAGS_DEBUG_V = -O1 -mmultiple -mstring -mstrict-align
|
||||
# $(LD_LIBS) \
|
||||
# -Wl,-\( -Wl,-lc -Wl,-lrtemsall -Wl,-lgcc -Wl,-\)
|
||||
define make-exe
|
||||
$(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) \
|
||||
-o $@ $(LINK_OBJS) $(LINK_LIBS)
|
||||
$(NM) -g -n $@ > $(basename $@).num
|
||||
$(SIZE) $@
|
||||
test -d ${PROJECT_RELEASE}/bin || mkdir ${PROJECT_RELEASE}/bin
|
||||
cp $@ $(PROJECT_ROOT)/c/mcp750/lib/libbsp/powerpc/$(RTEMS_BSP_FAMILY)/bootloader/$(ARCH); \
|
||||
( cd $(PROJECT_ROOT)/c/mcp750/lib/libbsp/powerpc/$(RTEMS_BSP_FAMILY)/bootloader; \
|
||||
$(MAKE) bootloader BINARY_LOADED=$@; )
|
||||
f=`basename $@ .exe`; \
|
||||
cp $(PROJECT_ROOT)/c/mcp750/lib/libbsp/powerpc/$(RTEMS_BSP_FAMILY)/bootloader/bootloader \
|
||||
${PROJECT_RELEASE}/bin/$${f}$(LIB_VARIANT).exe \
|
||||
&& chmod 755 \
|
||||
${PROJECT_RELEASE}/bin/$${f}$(LIB_VARIANT).exe
|
||||
$(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) \
|
||||
-o $(basename $@).nxe $(LINK_OBJS) $(LINK_LIBS)
|
||||
$(NM) -g -n $(basename $@).nxe > $(basename $@).num
|
||||
$(SIZE) $(basename $@).nxe
|
||||
$(OBJCOPY) $(basename $@).nxe rtems -O binary -R .comment -S
|
||||
gzip -vf9 rtems
|
||||
$(LD) -o $@ $(PROJECT_RELEASE)/lib/bootloader.o --just-symbols=$(basename $@).nxe \
|
||||
-b binary rtems.gz -T $(PROJECT_RELEASE)/lib/ppcboot.lds \
|
||||
-Map $(basename $@).map && chmod 755 $@
|
||||
rm -f rtems.gz
|
||||
endef
|
||||
|
||||
# Miscellaneous additions go here
|
||||
|
||||
Reference in New Issue
Block a user