source: rtems/c/src/librpc/configure.in @ df25c998

4.104.114.84.95
Last change on this file since df25c998 was ca7858bb, checked in by Joel Sherrill <joel.sherrill@…>, on 07/26/00 at 19:28:11

Port of RTEMS to the Texas Instruments C3x/C4x DSP families including
a BSP (c4xsim) supporting the simulator included with gdb. This port
was done by Joel Sherrill and Jennifer Averett of OAR Corporation.
Also included with this port is a space/time optimization to eliminate
FP context switch management on CPUs without hardware or software FP.

An issue with this port was that sizeof(unsigned32) = sizeof(unsigned8)
on this CPU. This required addressing alignment checks and assumptions
as well as fixing code that assumed sizeof(unsigned32) == 4.

  • Property mode set to 100644
File size: 828 bytes
Line 
1dnl Process this file with autoconf to produce a configure script.
2dnl
3dnl $Id$
4
5AC_PREREQ(2.13)
6AC_INIT(include/rpc)
7RTEMS_TOP(../../..)
8AC_CONFIG_AUX_DIR(../../..)
9
10RTEMS_CANONICAL_TARGET_CPU
11RTEMS_CANONICAL_HOST
12
13AM_INIT_AUTOMAKE(rtems-c-src-librpc,$RTEMS_VERSION,no)
14AM_MAINTAINER_MODE
15
16RTEMS_ENABLE_NETWORKING
17RTEMS_ENABLE_BARE
18
19RTEMS_ENV_RTEMSBSP
20RTEMS_CHECK_CPU
21RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
22
23RTEMS_PROG_CC_FOR_TARGET
24RTEMS_CANONICALIZE_TOOLS
25
26RTEMS_CHECK_NETWORKING(RTEMS_BSP)
27
28AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
29AM_CONDITIONAL(rpc_not_supported, test "$RTEMS_CPU" = "c4x")
30
31RTEMS_PROJECT_ROOT
32
33# Explicitly list all Makefiles here
34AC_OUTPUT(
35Makefile
36include/Makefile
37include/rpc/Makefile
38include/rpcsvc/Makefile
39src/Makefile
40src/xdr/Makefile
41src/rpc/Makefile
42src/rpc/PSD.doc/Makefile
43)
Note: See TracBrowser for help on using the repository browser.