Changeset 206a0b38 in rtems
- Timestamp:
- 06/19/01 14:27:43 (22 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- a2e6723
- Parents:
- d4f9cef5
- Location:
- make
- Files:
-
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
make/ChangeLog
rd4f9cef5 r206a0b38 1 2 2001-06-19 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 3 custom/Cygwin-posix.cfg: Remove -U__STRICT_ANSI__, make-target-options. 4 custom/FreeBSD-posix.cfg: Remove make-target-options. 5 custom/HPUX9-posix.cfg: Dito. 6 custom/Linux-posix.cfg: Dito. 7 custom/Solaris-posix.cfg: Dito. 8 custom/arm_bare_bsp.cfg: Dito. 9 custom/armulator.cfg: Dito. 10 custom/erc32.cfg: Remove CONSOLE_USE_POLLED, CONSOLE_USE_INTERRUPTS. 11 custom/i386ex.cfg: Remove make-target-options. 12 custom/i960sim.cfg: Remove make-target-options. 13 custom/mvme2307.cfg: Remove CONSOLE_USE_POLLED, CONSOLE_USE_INTERRUPTS. 14 custom/rxgen960.cfg: Remove make-target-options, cleanup comments. 15 custom/score603e.cfg: Remove CONSOLE_USE_POLLED, CONSOLE_USE_INTERRUPTS. 16 custom/vegaplus.cfg: Remove make-target-options. 17 * custom/vegaplus.cfg: Remove make-target-options. 1 18 2 19 2001-05-25 Joel Sherrill <joel@OARcorp.com> -
make/custom/Cygwin-posix.cfg
rd4f9cef5 r206a0b38 16 16 17 17 # RTEMS_LIBC_DIR must already be set (by configuration) DOES NOT MATTER 18 LIBC_DEFINES =-D_POSIX_C_SOURCE -U__STRICT_ANSI__18 LIBC_DEFINES =-D_POSIX_C_SOURCE 19 19 LIBC_DEFINES+=-DRTEMS_UNIXLIB -DRTEMS_UNIX -DMALLOC_PROVIDED 20 20 … … 30 30 CFLAGS_OPTIMIZE_V = -O2 31 31 32 # This section makes the target dependent options file.33 34 define make-target-options35 endef36 37 32 define make-exe 38 33 $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $@ $(LINK_OBJS) $(LINK_LIBS) -
make/custom/FreeBSD-posix.cfg
rd4f9cef5 r206a0b38 25 25 CFLAGS_OPTIMIZE_V = -O2 26 26 27 # This section makes the target dependent options file.28 29 27 define make-exe 30 28 $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $@ $(LINK_OBJS) $(LINK_LIBS) -
make/custom/HPUX9-posix.cfg
rd4f9cef5 r206a0b38 34 34 CFLAGS_OPTIMIZE_V = -O2 35 35 36 # This section makes the target dependent options file.37 38 define make-target-options39 endef40 41 36 define make-exe 42 37 $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $@ $(LINK_OBJS) $(LINK_LIBS) -
make/custom/Linux-posix.cfg
rd4f9cef5 r206a0b38 30 30 CFLAGS_OPTIMIZE_V = -O2 31 31 32 # This section makes the target dependent options file.33 34 define make-target-options35 endef36 37 32 define make-exe 38 33 $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $@ $(LINK_OBJS) $(LINK_LIBS) -
make/custom/Solaris-posix.cfg
rd4f9cef5 r206a0b38 27 27 CFLAGS_OPTIMIZE_V = -O2 28 28 29 # This section makes the target dependent options file.30 31 define make-target-options32 endef33 34 29 define make-exe 35 30 $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $@ $(LINK_OBJS) $(LINK_LIBS) -
make/custom/arm_bare_bsp.cfg
rd4f9cef5 r206a0b38 12 12 # This is the actual bsp directory used during the build process. 13 13 RTEMS_BSP_FAMILY=arm_bare_bsp 14 15 # This section makes the target dependent options file.16 define make-target-options17 endef18 14 19 15 # This contains the compiler options necessary to select the CPU model -
make/custom/armulator.cfg
rd4f9cef5 r206a0b38 14 14 15 15 # This section makes the target dependent options file. 16 17 # if defined asserts do not generate code. This is commonly used18 19 define make-target-options20 endef21 16 22 17 # This contains the compiler options necessary to select the CPU model -
make/custom/erc32.cfg
rd4f9cef5 r206a0b38 39 39 # do not have a second trap table -- use the BSP's 40 40 # 41 # CONSOLE_USE_POLLED (erc32_bsp)42 41 # CONSOLE_USE_INTERRUPTS (erc32_bsp) 43 42 # The erc32 console driver can operate in either polled or interrupt mode. … … 63 62 define make-target-options 64 63 @echo "#define NO_TABLE_MOVE 1" >>$@ 65 @echo "#define CONSOLE_USE_INTERRUPTS 0" >>$@66 @echo "#define CONSOLE_USE_POLLED !CONSOLE_USE_INTERRUPTS" >>$@67 64 @echo "/* #define SIMSPARC_FAST_IDLE 1 */" >>$@ 68 65 @echo "/* #define FPU_REVB 1 */" >>$@ -
make/custom/i386ex.cfg
rd4f9cef5 r206a0b38 22 22 # -fomit-frame-pointer breaks debugging and C++ exceptions 23 23 CFLAGS_OPTIMIZE_V=-O4 24 25 # This section makes the target dependent options file.26 27 define make-target-options28 endef29 24 30 25 # Something like this should produce a map file but this does not work. -
make/custom/i960sim.cfg
rd4f9cef5 r206a0b38 22 22 # CFLAGS_OPTIMIZE_V=-O4 -mleaf-procedures 23 23 CFLAGS_OPTIMIZE_V=-O0 -g 24 25 # This section makes the target dependent options file.26 27 define make-target-options28 endef29 24 30 25 # The following are definitions of make-exe which will work using ld as -
make/custom/mvme2307.cfg
rd4f9cef5 r206a0b38 16 16 # This section makes the target dependent options file. 17 17 18 # CONSOLE_USE_POLLED (mvme2307_bsp)19 # CONSOLE_USE_INTERRUPTS (mvme2307_bsp)20 # The mvme2307 console driver has the structure to operate in either21 # polled or interrupt mode. However both modes only trap to the22 # monitor currently.23 #24 18 # PPC_VECTOR_FILE_BASE (PowerPC) 25 19 # This defines the base address of the exception table. -
make/custom/rxgen960.cfg
rd4f9cef5 r206a0b38 27 27 CFLAGS_OPTIMIZE_V=-O4 -mleaf-procedures 28 28 29 # This section makes the target dependent options file.30 31 define make-target-options32 endef33 34 29 # The following are definitions of make-exe which will work using ld as 35 30 # is currently required. It is expected that as of gcc 2.8, the end user 36 31 # will be able to override parts of the compilers specs and link using gcc. 37 38 # ifeq ($(RTEMS_USE_GCC272),yes)39 # ar x $(PROJECT_ROOT)/$(RTEMS_BSP_FAMILY)/lib/libbsp.a40 41 # LD_LIBS += $(PROJECT_RELEASE)/lib/libbsp.a42 32 43 33 ifeq ($(RTEMS_USE_GCC272),yes) -
make/custom/score603e.cfg
rd4f9cef5 r206a0b38 34 34 # This section makes the target dependent options file. 35 35 36 # CONSOLE_USE_POLLED (score603e_bsp)37 # CONSOLE_USE_INTERRUPTS (score603e_bsp)38 # The score603e console driver has the structure to operate in either39 # polled or interrupt mode. However both modes only trap to the40 # monitor currently.41 #42 36 # SCORE603E_USE_SDS (score603e_bsp) 43 37 # SCORE603E_USE_OPEN_FIRMWARE (score603e_bsp) … … 64 58 65 59 define make-target-options 66 @echo "#define CONSOLE_USE_INTERRUPTS 0" >>$@67 60 @echo "#define INITIALIZE_COM_PORTS 1" >>$@ 68 61 @echo "#define SCORE603E_GENERATION $(SCORE603E_GENERATION)" >>$@ -
make/custom/vegaplus.cfg
rd4f9cef5 r206a0b38 12 12 # This is the actual bsp directory used during the build process. 13 13 RTEMS_BSP_FAMILY=vegaplus 14 15 # This section makes the target dependent options file.16 define make-target-options17 endef18 14 19 15 # This contains the compiler options necessary to select the CPU model
Note: See TracChangeset
for help on using the changeset viewer.