mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-05 15:15:44 +00:00
2005-03-11 Philippe Simons <loki_666@fastmail.fm>
* custom/gp32.cfg: New file.
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
2005-03-11 Philippe Simons <loki_666@fastmail.fm>
|
||||
|
||||
* custom/gp32.cfg: New file.
|
||||
|
||||
2005-03-03 Ralf Corsepius <ralf.corsepius@rtems.org>
|
||||
|
||||
* custom/mpc8260ads.cfg : Remove PPC_ASM, PPC_ABI.
|
||||
|
||||
39
make/custom/gp32.cfg
Normal file
39
make/custom/gp32.cfg
Normal file
@@ -0,0 +1,39 @@
|
||||
#
|
||||
# Config file for ARM GP32
|
||||
#
|
||||
# gp32.cfg,v 1.0.0.0 2005/01/02 07:46:06 loki Exp
|
||||
#
|
||||
|
||||
include $(RTEMS_ROOT)/make/custom/default.cfg
|
||||
|
||||
RTEMS_CPU=arm
|
||||
RTEMS_CPU_MODEL=s3c2400
|
||||
|
||||
# This is the actual bsp directory used during the build process.
|
||||
RTEMS_BSP_FAMILY=gp32
|
||||
|
||||
# This contains the compiler options necessary to select the CPU model
|
||||
# and (hopefully) optimize for it.
|
||||
#
|
||||
CPU_CFLAGS = -mcpu=arm920t -mstructure-size-boundary=8
|
||||
|
||||
# optimize flag: typically -0, could use -O4 or -fast
|
||||
# -O4 is ok for RTEMS
|
||||
# NOTE2: some level of -O may be actually required by inline assembler (at least
|
||||
# -O2 so far.
|
||||
CFLAGS_OPTIMIZE_V=-O3
|
||||
#CFLAGS_OPTIMIZE_V=-O4 -mmultiple -mstring -mstrict-align
|
||||
|
||||
define make-exe
|
||||
$(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $@ \
|
||||
$(LINK_OBJS) $(LINK_LIBS)
|
||||
$(OBJCOPY) -O binary \
|
||||
--only-section=.text \
|
||||
--only-section=.data \
|
||||
--only-section=.rodata \
|
||||
--strip-unneeded $(basename $@).exe $(basename $@).gxb
|
||||
$(NM) -g -n $(basename $@).exe > $(basename $@).num
|
||||
$(SIZE) $(basename $@).exe
|
||||
endef
|
||||
|
||||
# Miscellaneous additions go here
|
||||
Reference in New Issue
Block a user