Changeset 65e6b542 in rtems
- Timestamp:
- 04/26/01 16:41:44 (23 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- c556d0ba
- Parents:
- 83518713
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/make/compilers/gcc-target-default.cfg
r83518713 r65e6b542 19 19 20 20 # NOTE: Should these go to CPPFLAGS ? 21 CFLAGS_DEFAULT=-g -Wall -ansi -fasm21 CFLAGS_DEFAULT=-g -Wall 22 22 23 23 # NOTE: CPU_CFLAGS should probably be renamed to CPU_CPPFLAGS -
make/ChangeLog
r83518713 r65e6b542 1 2 2001-04-26 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 3 4 * compilers/gcc-default.cfg: Dito. 5 * compilers/gcc-target-default.cfg: Dito. 6 * compilers/gcc-portsw.cfg: Remove -Hansi. 7 * custom/posix.cfg: Remove inclusion of target.cfg. 8 * custom/simhppa.cfg: Remove -ansi -fasm. 1 9 2 10 2001-04-11 Eric Valette <valette@crf.canon.fr> -
make/compilers/gcc-no_bsp.cfg
r83518713 r65e6b542 70 70 CPU_CFLAGS = 71 71 72 CFLAGS_DEFAULT = $(CPU_CFLAGS) -Wall -ansi -fasm72 CFLAGS_DEFAULT = $(CPU_CFLAGS) -Wall 73 73 74 74 # optimize flag: typically -0, could use -O4 or -fast -
make/compilers/gcc-portsw.cfg
r83518713 r65e6b542 50 50 # default flags 51 51 52 #CFLAGS_DEFAULT = -NB -bwc -nocrt0 -Ml -m -g -H ansi -Hon=Pointers_compatible -Hon=Pointers_compatible_with_ints -Dinline= -D___AM29K__ -Hnocopyr52 #CFLAGS_DEFAULT = -NB -bwc -nocrt0 -Ml -m -g -Hon=Pointers_compatible -Hon=Pointers_compatible_with_ints -Dinline= -D___AM29K__ -Hnocopyr 53 53 CFLAGS_DEFAULT = $(CPU_CFLAGS) -Wall 54 54 -
make/compilers/gcc-target-default.cfg
r83518713 r65e6b542 19 19 20 20 # NOTE: Should these go to CPPFLAGS ? 21 CFLAGS_DEFAULT=-g -Wall -ansi -fasm21 CFLAGS_DEFAULT=-g -Wall 22 22 23 23 # NOTE: CPU_CFLAGS should probably be renamed to CPU_CPPFLAGS -
make/custom/posix.cfg
r83518713 r65e6b542 5 5 # 6 6 7 # include $(RTEMS_ROOT)/make/target.cfg8 7 include $(RTEMS_ROOT)/make/host.cfg 9 8 -
make/custom/simhppa.cfg
r83518713 r65e6b542 25 25 # -Wall -- lots of warnings 26 26 # -pipe -- compiler uses pipes to talk to phases (usually faster) 27 # -ansi -- ANSI C compliance28 # -fasm -- ANSI, but allow inline assembler29 27 # -mgas -- we are using gas as assembler 30 28 # -fno-keep-inline-functions -- do not emit any inlines as static 31 CFLAGS_DEFAULT = $(CPU_CFLAGS) -Wall - ansi -fasm -mgas29 CFLAGS_DEFAULT = $(CPU_CFLAGS) -Wall -mgas 32 30 33 31 # optimize flag: typically -0, could use -O4 or -fast
Note: See TracChangeset
for help on using the changeset viewer.