Changeset 88f60e26 in rtems
- Timestamp:
- 01/06/02 20:09:43 (22 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- ab1ed86
- Parents:
- 3f345bf
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/make/compilers/gcc-target-default.cfg
r3f345bf r88f60e26 270 270 $(OBJS) \ 271 271 $(MANAGERS_NOT_WANTED:%=$(PROJECT_RELEASE)/lib/no-%$(LIB_VARIANT).rel) \ 272 $(PROJECT_RELEASE)/lib/librtemsall$(LIBSUFFIX_VA) 272 $(PROJECT_RELEASE)/lib/librtemsbsp$(LIBSUFFIX_VA) 273 $(PROJECT_RELEASE)/lib/librtemscpu$(LIBSUFFIX_VA) 273 274 274 275 ifeq ($(RTEMS_USE_GCC272),yes) -
make/ChangeLog
r3f345bf r88f60e26 1 2002-02-05 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * custom/genmongoosev.cfg: Remove -g from CPU_CFLAGS. 4 * custom/h8sim.cfg: Remove -g from CPU_CFLAGS. Remove GCC272 5 support. 6 * custom/jmr3904.cfg: Remove -g from CPU_CFLAGS. Remove GCC272. 7 1 8 2001-12-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 9 -
make/compilers/gcc-no_bsp.cfg
r3f345bf r88f60e26 266 266 $(LIBC_EXTRA_LIBS) \ 267 267 $(PROJECT_RELEASE)/lib/libtest$(LIBSUFFIX_VA) \ 268 $(PROJECT_RELEASE)/lib/librtemsall$(LIBSUFFIX_VA) \ 268 $(PROJECT_RELEASE)/lib/librtemsbsp$(LIBSUFFIX_VA) \ 269 $(PROJECT_RELEASE)/lib/librtemscpu$(LIBSUFFIX_VA) \ 269 270 $(LIBC_LIBM) $(LIBC_LIBC) $(LIBGCC) 270 271 -
make/compilers/gcc-target-default.cfg
r3f345bf r88f60e26 270 270 $(OBJS) \ 271 271 $(MANAGERS_NOT_WANTED:%=$(PROJECT_RELEASE)/lib/no-%$(LIB_VARIANT).rel) \ 272 $(PROJECT_RELEASE)/lib/librtemsall$(LIBSUFFIX_VA) 272 $(PROJECT_RELEASE)/lib/librtemsbsp$(LIBSUFFIX_VA) 273 $(PROJECT_RELEASE)/lib/librtemscpu$(LIBSUFFIX_VA) 273 274 274 275 ifeq ($(RTEMS_USE_GCC272),yes) -
make/custom/genmongoosev.cfg
r3f345bf r88f60e26 16 16 # and (hopefully) optimize for it. 17 17 # 18 CPU_CFLAGS=-mips1 - g -G018 CPU_CFLAGS=-mips1 -G0 19 19 20 20 # optimize flag: typically -0, could use -O4 or -fast -
make/custom/h8sim.cfg
r3f345bf r88f60e26 21 21 # -O4 is ok for RTEMS 22 22 # CFLAGS_OPTIMIZE_V=-O4 -mleaf-procedures 23 CFLAGS_OPTIMIZE_V=-O0 -g23 CFLAGS_OPTIMIZE_V=-O0 24 24 25 25 # The following are definitions of make-exe which will work using ld as … … 27 27 # will be able to override parts of the compilers specs and link using gcc. 28 28 29 ifeq ($(RTEMS_USE_GCC272),yes)30 31 define make-exe32 $(LD) -u _sbrk $(LDFLAGS) -N -T $(LINKCMDS) -o $(basename $@).exe \33 $(START_FILE) $(LINK_OBJS) --start-group $(LINK_LIBS) --end-group34 $(NM) -g -n $(basename $@).exe > $(basename $@).num35 $(SIZE) $(basename $@).exe36 endef37 38 else39 29 define make-exe 40 30 $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) \ … … 44 34 $(SIZE) $@ 45 35 endef 46 endif47 36 48 37 # Miscellaneous additions go here -
make/custom/jmr3904.cfg
r3f345bf r88f60e26 16 16 # and (hopefully) optimize for it. 17 17 # 18 CPU_CFLAGS=-m3900 - g -G018 CPU_CFLAGS=-m3900 -G0 19 19 20 20 # optimize flag: typically -0, could use -O4 or -fast … … 26 26 # will be able to override parts of the compilers specs and link using gcc. 27 27 28 ifeq ($(RTEMS_USE_GCC272),yes)29 30 define make-exe31 $(LD) -u _sbrk $(LDFLAGS) -N -T $(LINKCMDS) -o $(basename $@).exe \32 $(START_FILE) $(LINK_OBJS) --start-group $(LINK_LIBS) --end-group33 $(NM) -g -n $(basename $@).exe > $(basename $@).num34 $(SIZE) $(basename $@).exe35 endef36 37 else38 28 define make-exe 39 29 $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) \ … … 43 33 $(SIZE) $@ 44 34 endef 45 endif46 35 47 36 # Miscellaneous additions go here
Note: See TracChangeset
for help on using the changeset viewer.