Changeset 00ed1c9 in rtems
- Timestamp:
- 06/02/05 13:47:22 (19 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 44b4cf4
- Parents:
- b2a4e861
- Location:
- make
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
make/ChangeLog
rb2a4e861 r00ed1c9 1 2005-06-01 Philippe Simons <loki_666@fastmail.fm> 2 3 * custom/gp32.cfg: Add make-cxx-exe. 4 1 5 2005-05-27 Ralf Corsepius <ralf.corsepius@rtems.org> 2 6 -
make/custom/gp32.cfg
rb2a4e861 r00ed1c9 16 16 # and (hopefully) optimize for it. 17 17 # 18 CPU_CFLAGS = -mcpu=arm920t -mstructure-size-boundary= 818 CPU_CFLAGS = -mcpu=arm920t -mstructure-size-boundary=32 -O3 19 19 20 20 # optimize flag: typically -0, could use -O4 or -fast … … 22 22 # NOTE2: some level of -O may be actually required by inline assembler (at least 23 23 # -O2 so far. 24 CFLAGS_OPTIMIZE_V=-O3 25 #CFLAGS_OPTIMIZE_V=-O4 -mmultiple -mstring -mstrict-align 24 CFLAGS_OPTIMIZE_V= 26 25 27 26 define make-exe 28 27 $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $@ \ 29 28 $(LINK_OBJS) $(LINK_LIBS) 30 $(OBJCOPY) -O binary \ 31 --only-section=.text \ 32 --only-section=.data \ 33 --only-section=.rodata \ 34 --strip-unneeded $(basename $@).exe $(basename $@).gxb 29 $(OBJCOPY) -O binary $(basename $@).exe $(basename $@).gxb 30 $(NM) -g -n $(basename $@).exe > $(basename $@).num 31 $(SIZE) $(basename $@).exe 32 endef 33 34 define make-cxx-exe 35 $(LINK.cc) $(AM_CFLAGS) $(AM_CXXFLAGS) $(AM_LDFLAGS) -o $@ \ 36 $(LINK_OBJS) $(LINK_LIBS) 37 $(OBJCOPY) -O binary $(basename $@).exe $(basename $@).gxb 35 38 $(NM) -g -n $(basename $@).exe > $(basename $@).num 36 39 $(SIZE) $(basename $@).exe
Note: See TracChangeset
for help on using the changeset viewer.