source: rtems/c/src/lib/libbsp/powerpc/mpc55xxevb/configure.ac @ 0cb39e8

4.104.114.95
Last change on this file since 0cb39e8 was c39e6645, checked in by Ralf Corsepius <ralf.corsepius@…>, on 07/27/08 at 06:55:02

Add -ansi to RTEMS_PROG_CC_FOR_TARGET.

  • Property mode set to 100644
File size: 1.6 KB
Line 
1##
2#
3# @file
4#
5# @ingroup mpc55xx_config
6#
7# @brief Configure script of LibBSP for the MPC55xx evaluation boards.
8#
9
10AC_PREREQ(2.60)
11AC_INIT([rtems-c-src-lib-libbsp-powerpc-mpc55xxevb],[_RTEMS_VERSION],[http://www.rtems.org/bugzilla])
12AC_CONFIG_SRCDIR([bsp_specs])
13RTEMS_TOP(../../../../../..)
14
15RTEMS_CANONICAL_TARGET_CPU
16AM_INIT_AUTOMAKE([no-define nostdinc foreign 1.10])
17RTEMS_BSP_CONFIGURE
18
19RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm])
20RTEMS_CANONICALIZE_TOOLS
21RTEMS_PROG_CCAS
22
23RTEMS_CHECK_NETWORKING
24AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
25
26RTEMS_BSPOPTS_SET([UARTS_USE_TERMIOS],[*],[0])
27RTEMS_BSPOPTS_HELP([UARTS_USE_TERMIOS],
28[Define to 1 if you want termios support for every port.
29 Termios support is independent of the choice of UART I/O mode.])
30
31RTEMS_BSPOPTS_SET([CONSOLE_MINOR],[*],[MPC55XX_ESCI_A_MINOR])
32RTEMS_BSPOPTS_HELP([CONSOLE_MINOR],
33[Must be defined to be one of MPC55XX_ESCI_A_MINOR or MPC55XX_ESCI_B_MINOR.  Determines which
34 device will be registered as /dev/console.])
35
36RTEMS_BSPOPTS_SET([UARTS_IO_MODE],[*],[0])
37RTEMS_BSPOPTS_HELP([UARTS_IO_MODE],
38[Define to 1 if you want interrupt-driven I/O for the SCI ports.])
39
40RTEMS_BSPOPTS_SET([PRINTK_MINOR],[*],[MPC55XX_ESCI_B_MINOR])
41RTEMS_BSPOPTS_HELP([PRINTK_MINOR],
42[Must be defined to be one of MPC55XX_ESCI_A_MINOR or MPC55XX_ESCI_B_MINOR.  Determines which
43 device is used for output by printk().  The printk port always uses polled
44 I/O.  Don't open the printk port from RTEMS unless also using polled I/O
45 for the SCI ports.])
46
47AC_CONFIG_FILES([Makefile
48include/bspopts.h])
49
50RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION
51
52RTEMS_PPC_EXCEPTIONS
53
54AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.