Changeset 3ac8e590 in rtems
- Timestamp:
- 10/04/99 16:58:20 (24 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 4f021c0
- Parents:
- 95ba459
- Location:
- c/src/lib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/configure
r95ba459 r3ac8e590 23 23 ac_help="$ac_help 24 24 --enable-rdbg enable remote debugger" 25 ac_help="$ac_help26 --enable-cxx enable C++ support,27 and build the rtems++ library"28 ac_help="$ac_help29 --enable-gcc28 enable use of gcc 2.8.x features"30 25 ac_help="$ac_help 31 26 --enable-libcdir=directory set the directory for the C library" … … 565 560 566 561 echo $ac_n "checking for RTEMS Version""... $ac_c" 1>&6 567 echo "configure:56 8: checking for RTEMS Version" >&5562 echo "configure:563: checking for RTEMS Version" >&5 568 563 if test -r "${srcdir}/${RTEMS_TOPdir}/VERSION"; then 569 564 RTEMS_VERSION=`grep Version ${srcdir}/${RTEMS_TOPdir}/VERSION | \ … … 596 591 ac_configure=$ac_aux_dir/configure # This should be Cygnus configure. 597 592 598 599 echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6600 echo "configure:601: checking whether ${MAKE-make} sets \${MAKE}" >&5601 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'`602 if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then603 echo $ac_n "(cached) $ac_c" 1>&6604 else605 cat > conftestmake <<\EOF606 all:607 @echo 'ac_maketemp="${MAKE}"'608 EOF609 # GNU make sometimes prints "make[1]: Entering...", which would confuse us.610 eval `${MAKE-make} -f conftestmake 2>/dev/null | grep temp=`611 if test -n "$ac_maketemp"; then612 eval ac_cv_prog_make_${ac_make}_set=yes613 else614 eval ac_cv_prog_make_${ac_make}_set=no615 fi616 rm -f conftestmake617 fi618 if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then619 echo "$ac_t""yes" 1>&6620 SET_MAKE=621 else622 echo "$ac_t""no" 1>&6623 SET_MAKE="MAKE=${MAKE-make}"624 fi625 593 626 594 … … 653 621 654 622 echo $ac_n "checking host system type""... $ac_c" 1>&6 655 echo "configure:6 56: checking host system type" >&5623 echo "configure:624: checking host system type" >&5 656 624 657 625 host_alias=$host … … 674 642 675 643 echo $ac_n "checking target system type""... $ac_c" 1>&6 676 echo "configure:6 77: checking target system type" >&5644 echo "configure:645: checking target system type" >&5 677 645 678 646 target_alias=$target … … 692 660 693 661 echo $ac_n "checking build system type""... $ac_c" 1>&6 694 echo "configure:6 95: checking build system type" >&5662 echo "configure:663: checking build system type" >&5 695 663 696 664 build_alias=$build … … 715 683 716 684 echo $ac_n "checking rtems target cpu""... $ac_c" 1>&6 717 echo "configure: 718: checking rtems target cpu" >&5685 echo "configure:686: checking rtems target cpu" >&5 718 686 case "${target}" in 719 687 # hpux unix port should go here … … 740 708 echo "$ac_t""$RTEMS_CPU" 1>&6 741 709 742 710 AM_INIT_AUTOMAKE(rtems-c-src-lib,RTEMS_VERSION,no) 743 711 echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6 744 echo "configure:7 45: checking whether to enable maintainer-specific portions of Makefiles" >&5712 echo "configure:713: checking whether to enable maintainer-specific portions of Makefiles" >&5 745 713 # Check whether --enable-maintainer-mode or --disable-maintainer-mode was given. 746 714 if test "${enable_maintainer_mode+set}" = set; then … … 808 776 809 777 810 # Check whether --enable-cxx or --disable-cxx was given.811 if test "${enable_cxx+set}" = set; then812 enableval="$enable_cxx"813 case "${enableval}" in814 yes) RTEMS_HAS_CPLUSPLUS=yes ;;815 no) RTEMS_HAS_CPLUSPLUS=no ;;816 *) { echo "configure: error: bad value ${enableval} for enable-cxx option" 1>&2; exit 1; } ;;817 esac818 else819 RTEMS_HAS_CPLUSPLUS=no820 fi821 822 823 824 # Check whether --enable-gcc28 or --disable-gcc28 was given.825 if test "${enable_gcc28+set}" = set; then826 enableval="$enable_gcc28"827 case "${enableval}" in828 yes) RTEMS_USE_GCC272=no ;;829 no) RTEMS_USE_GCC272=yes ;;830 *) { echo "configure: error: bad value ${enableval} for gcc-28 option" 1>&2; exit 1; } ;;831 esac832 else833 RTEMS_USE_GCC272=no834 fi835 836 837 838 778 # Check whether --enable-libcdir or --disable-libcdir was given. 839 779 if test "${enable_libcdir+set}" = set; then … … 884 824 885 825 echo $ac_n "checking for RTEMS_BSP""... $ac_c" 1>&6 886 echo "configure:8 87: checking for RTEMS_BSP" >&5826 echo "configure:827: checking for RTEMS_BSP" >&5 887 827 if eval "test \"`echo '$''{'rtems_cv_RTEMS_BSP'+set}'`\" = set"; then 888 828 echo $ac_n "(cached) $ac_c" 1>&6 … … 899 839 900 840 901 # Find a good install program. We prefer a C program (faster),902 # so one script is as good as another. But avoid the broken or903 # incompatible versions:904 # SysV /etc/install, /usr/sbin/install905 # SunOS /usr/etc/install906 # IRIX /sbin/install907 # AIX /bin/install908 # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag909 # AFS /usr/afsws/bin/install, which mishandles nonexistent args910 # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"911 # ./install, which can be erroneously created by make from ./install.sh.912 echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6913 echo "configure:914: checking for a BSD compatible install" >&5914 if test -z "$INSTALL"; then915 if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then916 echo $ac_n "(cached) $ac_c" 1>&6917 else918 IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS=":"919 for ac_dir in $PATH; do920 # Account for people who put trailing slashes in PATH elements.921 case "$ac_dir/" in922 /|./|.//|/etc/*|/usr/sbin/*|/usr/etc/*|/sbin/*|/usr/afsws/bin/*|/usr/ucb/*) ;;923 *)924 # OSF1 and SCO ODT 3.0 have their own names for install.925 # Don't use installbsd from OSF since it installs stuff as root926 # by default.927 for ac_prog in ginstall scoinst install; do928 if test -f $ac_dir/$ac_prog; then929 if test $ac_prog = install &&930 grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then931 # AIX install. It has an incompatible calling convention.932 :933 else934 ac_cv_path_install="$ac_dir/$ac_prog -c"935 break 2936 fi937 fi938 done939 ;;940 esac941 done942 IFS="$ac_save_IFS"943 944 fi945 if test "${ac_cv_path_install+set}" = set; then946 INSTALL="$ac_cv_path_install"947 else948 # As a last resort, use the slow shell script. We don't cache a949 # path for INSTALL within a source directory, because that will950 # break other packages using the cache if that directory is951 # removed, or if the path is relative.952 INSTALL="$ac_install_sh"953 fi954 fi955 echo "$ac_t""$INSTALL" 1>&6956 957 # Use test -z because SunOS4 sh mishandles braces in ${var-val}.958 # It thinks the first close brace ends the variable substitution.959 test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'960 961 test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}'962 963 test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'964 965 966 841 967 842 968 843 # Is this a supported CPU? 969 844 echo $ac_n "checking if cpu $RTEMS_CPU is supported""... $ac_c" 1>&6 970 echo "configure: 971: checking if cpu $RTEMS_CPU is supported" >&5845 echo "configure:846: checking if cpu $RTEMS_CPU is supported" >&5 971 846 if test -d "$srcdir/$RTEMS_TOPdir/c/src/exec/score/cpu/$RTEMS_CPU"; then 972 847 echo "$ac_t""yes" 1>&6 … … 1029 904 set dummy $ac_prog; ac_word=$2 1030 905 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1031 echo "configure: 1032: checking for $ac_word" >&5906 echo "configure:907: checking for $ac_word" >&5 1032 907 if eval "test \"`echo '$''{'ac_cv_path_CC_FOR_TARGET'+set}'`\" = set"; then 1033 908 echo $ac_n "(cached) $ac_c" 1>&6 … … 1073 948 1074 949 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 1075 echo "configure: 1076: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5950 echo "configure:951: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 1076 951 1077 952 ac_ext=c … … 1084 959 cat > conftest.$ac_ext << EOF 1085 960 1086 #line 1087"configure"961 #line 962 "configure" 1087 962 #include "confdefs.h" 1088 963 1089 964 main(){return(0);} 1090 965 EOF 1091 if { (eval echo configure: 1092: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then966 if { (eval echo configure:967: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1092 967 ac_cv_prog_cc_works=yes 1093 968 # If we can't run a trivial program, we are probably using a cross compiler. … … 1115 990 fi 1116 991 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 1117 echo "configure: 1118: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5992 echo "configure:993: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 1118 993 echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 1119 994 cross_compiling=$ac_cv_prog_cc_cross 1120 995 1121 996 echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 1122 echo "configure: 1123: checking whether we are using GNU C" >&5997 echo "configure:998: checking whether we are using GNU C" >&5 1123 998 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then 1124 999 echo $ac_n "(cached) $ac_c" 1>&6 … … 1129 1004 #endif 1130 1005 EOF 1131 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1 132: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then1006 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1007: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 1132 1007 ac_cv_prog_gcc=yes 1133 1008 else … … 1144 1019 CFLAGS= 1145 1020 echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 1146 echo "configure:1 147: checking whether ${CC-cc} accepts -g" >&51021 echo "configure:1022: checking whether ${CC-cc} accepts -g" >&5 1147 1022 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then 1148 1023 echo $ac_n "(cached) $ac_c" 1>&6 … … 1186 1061 1187 1062 echo $ac_n "checking whether $CC_FOR_TARGET accepts -specs""... $ac_c" 1>&6 1188 echo "configure:1 189: checking whether $CC_FOR_TARGET accepts -specs" >&51063 echo "configure:1064: checking whether $CC_FOR_TARGET accepts -specs" >&5 1189 1064 if eval "test \"`echo '$''{'rtems_cv_gcc_specs'+set}'`\" = set"; then 1190 1065 echo $ac_n "(cached) $ac_c" 1>&6 … … 1207 1082 1208 1083 echo $ac_n "checking whether $CC_FOR_TARGET accepts --pipe""... $ac_c" 1>&6 1209 echo "configure:1 210: checking whether $CC_FOR_TARGET accepts --pipe" >&51084 echo "configure:1085: checking whether $CC_FOR_TARGET accepts --pipe" >&5 1210 1085 if eval "test \"`echo '$''{'rtems_cv_gcc_pipe'+set}'`\" = set"; then 1211 1086 echo $ac_n "(cached) $ac_c" 1>&6 … … 1248 1123 1249 1124 echo $ac_n "checking target's ar""... $ac_c" 1>&6 1250 echo "configure:1 251: checking target's ar" >&51125 echo "configure:1126: checking target's ar" >&5 1251 1126 if eval "test \"`echo '$''{'ac_cv_path_AR_FOR_TARGET'+set}'`\" = set"; then 1252 1127 echo $ac_n "(cached) $ac_c" 1>&6 … … 1281 1156 # intends 1282 1157 echo $ac_n "checking whether environment variable AR_FOR_TARGET is an absolute path""... $ac_c" 1>&6 1283 echo "configure:1 284: checking whether environment variable AR_FOR_TARGET is an absolute path" >&51158 echo "configure:1159: checking whether environment variable AR_FOR_TARGET is an absolute path" >&5 1284 1159 case "$AR_FOR_TARGET" in 1285 1160 /*) # valid … … 1298 1173 set dummy "$program_prefix"ar; ac_word=$2 1299 1174 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1300 echo "configure:1 301: checking for $ac_word" >&51175 echo "configure:1176: checking for $ac_word" >&5 1301 1176 if eval "test \"`echo '$''{'ac_cv_path_AR_FOR_TARGET'+set}'`\" = set"; then 1302 1177 echo $ac_n "(cached) $ac_c" 1>&6 … … 1335 1210 1336 1211 echo $ac_n "checking target's as""... $ac_c" 1>&6 1337 echo "configure:1 338: checking target's as" >&51212 echo "configure:1213: checking target's as" >&5 1338 1213 if eval "test \"`echo '$''{'ac_cv_path_AS_FOR_TARGET'+set}'`\" = set"; then 1339 1214 echo $ac_n "(cached) $ac_c" 1>&6 … … 1368 1243 # intends 1369 1244 echo $ac_n "checking whether environment variable AS_FOR_TARGET is an absolute path""... $ac_c" 1>&6 1370 echo "configure:1 371: checking whether environment variable AS_FOR_TARGET is an absolute path" >&51245 echo "configure:1246: checking whether environment variable AS_FOR_TARGET is an absolute path" >&5 1371 1246 case "$AS_FOR_TARGET" in 1372 1247 /*) # valid … … 1385 1260 set dummy "$program_prefix"as; ac_word=$2 1386 1261 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1387 echo "configure:1 388: checking for $ac_word" >&51262 echo "configure:1263: checking for $ac_word" >&5 1388 1263 if eval "test \"`echo '$''{'ac_cv_path_AS_FOR_TARGET'+set}'`\" = set"; then 1389 1264 echo $ac_n "(cached) $ac_c" 1>&6 … … 1422 1297 1423 1298 echo $ac_n "checking target's ld""... $ac_c" 1>&6 1424 echo "configure:1 425: checking target's ld" >&51299 echo "configure:1300: checking target's ld" >&5 1425 1300 if eval "test \"`echo '$''{'ac_cv_path_LD_FOR_TARGET'+set}'`\" = set"; then 1426 1301 echo $ac_n "(cached) $ac_c" 1>&6 … … 1455 1330 # intends 1456 1331 echo $ac_n "checking whether environment variable LD_FOR_TARGET is an absolute path""... $ac_c" 1>&6 1457 echo "configure:1 458: checking whether environment variable LD_FOR_TARGET is an absolute path" >&51332 echo "configure:1333: checking whether environment variable LD_FOR_TARGET is an absolute path" >&5 1458 1333 case "$LD_FOR_TARGET" in 1459 1334 /*) # valid … … 1472 1347 set dummy "$program_prefix"ld; ac_word=$2 1473 1348 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1474 echo "configure:1 475: checking for $ac_word" >&51349 echo "configure:1350: checking for $ac_word" >&5 1475 1350 if eval "test \"`echo '$''{'ac_cv_path_LD_FOR_TARGET'+set}'`\" = set"; then 1476 1351 echo $ac_n "(cached) $ac_c" 1>&6 … … 1509 1384 1510 1385 echo $ac_n "checking target's nm""... $ac_c" 1>&6 1511 echo "configure:1 512: checking target's nm" >&51386 echo "configure:1387: checking target's nm" >&5 1512 1387 if eval "test \"`echo '$''{'ac_cv_path_NM_FOR_TARGET'+set}'`\" = set"; then 1513 1388 echo $ac_n "(cached) $ac_c" 1>&6 … … 1542 1417 # intends 1543 1418 echo $ac_n "checking whether environment variable NM_FOR_TARGET is an absolute path""... $ac_c" 1>&6 1544 echo "configure:1 545: checking whether environment variable NM_FOR_TARGET is an absolute path" >&51419 echo "configure:1420: checking whether environment variable NM_FOR_TARGET is an absolute path" >&5 1545 1420 case "$NM_FOR_TARGET" in 1546 1421 /*) # valid … … 1559 1434 set dummy "$program_prefix"nm; ac_word=$2 1560 1435 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1561 echo "configure:1 562: checking for $ac_word" >&51436 echo "configure:1437: checking for $ac_word" >&5 1562 1437 if eval "test \"`echo '$''{'ac_cv_path_NM_FOR_TARGET'+set}'`\" = set"; then 1563 1438 echo $ac_n "(cached) $ac_c" 1>&6 … … 1597 1472 1598 1473 echo $ac_n "checking target's ranlib""... $ac_c" 1>&6 1599 echo "configure:1 600: checking target's ranlib" >&51474 echo "configure:1475: checking target's ranlib" >&5 1600 1475 if eval "test \"`echo '$''{'ac_cv_path_RANLIB_FOR_TARGET'+set}'`\" = set"; then 1601 1476 echo $ac_n "(cached) $ac_c" 1>&6 … … 1630 1505 # intends 1631 1506 echo $ac_n "checking whether environment variable RANLIB_FOR_TARGET is an absolute path""... $ac_c" 1>&6 1632 echo "configure:1 633: checking whether environment variable RANLIB_FOR_TARGET is an absolute path" >&51507 echo "configure:1508: checking whether environment variable RANLIB_FOR_TARGET is an absolute path" >&5 1633 1508 case "$RANLIB_FOR_TARGET" in 1634 1509 /*) # valid … … 1647 1522 set dummy "$program_prefix"ranlib; ac_word=$2 1648 1523 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1649 echo "configure:1 650: checking for $ac_word" >&51524 echo "configure:1525: checking for $ac_word" >&5 1650 1525 if eval "test \"`echo '$''{'ac_cv_path_RANLIB_FOR_TARGET'+set}'`\" = set"; then 1651 1526 echo $ac_n "(cached) $ac_c" 1>&6 … … 1686 1561 1687 1562 echo $ac_n "checking whether $AR_FOR_TARGET -s works""... $ac_c" 1>&6 1688 echo "configure:1 689: checking whether $AR_FOR_TARGET -s works" >&51563 echo "configure:1564: checking whether $AR_FOR_TARGET -s works" >&5 1689 1564 if eval "test \"`echo '$''{'rtems_cv_AR_FOR_TARGET_S'+set}'`\" = set"; then 1690 1565 echo $ac_n "(cached) $ac_c" 1>&6 … … 1695 1570 { return b; } 1696 1571 EOF 1697 if { ac_try='$CC_FOR_TARGET -o conftest.o -c conftest.$ac_ext'; { (eval echo configure:1 698: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } \1698 && { ac_try='$AR_FOR_TARGET -sr conftest.a conftest.o'; { (eval echo configure:1 699: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } \1572 if { ac_try='$CC_FOR_TARGET -o conftest.o -c conftest.$ac_ext'; { (eval echo configure:1573: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } \ 1573 && { ac_try='$AR_FOR_TARGET -sr conftest.a conftest.o'; { (eval echo configure:1574: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } \ 1699 1574 && test -s conftest.a ; \ 1700 1575 then … … 1721 1596 1722 1597 echo $ac_n "checking target's objcopy""... $ac_c" 1>&6 1723 echo "configure:1 724: checking target's objcopy" >&51598 echo "configure:1599: checking target's objcopy" >&5 1724 1599 if eval "test \"`echo '$''{'ac_cv_path_OBJCOPY_FOR_TARGET'+set}'`\" = set"; then 1725 1600 echo $ac_n "(cached) $ac_c" 1>&6 … … 1754 1629 # intends 1755 1630 echo $ac_n "checking whether environment variable OBJCOPY_FOR_TARGET is an absolute path""... $ac_c" 1>&6 1756 echo "configure:1 757: checking whether environment variable OBJCOPY_FOR_TARGET is an absolute path" >&51631 echo "configure:1632: checking whether environment variable OBJCOPY_FOR_TARGET is an absolute path" >&5 1757 1632 case "$OBJCOPY_FOR_TARGET" in 1758 1633 /*) # valid … … 1771 1646 set dummy "$program_prefix"objcopy; ac_word=$2 1772 1647 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1773 echo "configure:1 774: checking for $ac_word" >&51648 echo "configure:1649: checking for $ac_word" >&5 1774 1649 if eval "test \"`echo '$''{'ac_cv_path_OBJCOPY_FOR_TARGET'+set}'`\" = set"; then 1775 1650 echo $ac_n "(cached) $ac_c" 1>&6 … … 1808 1683 1809 1684 echo $ac_n "checking target's size""... $ac_c" 1>&6 1810 echo "configure:1 811: checking target's size" >&51685 echo "configure:1686: checking target's size" >&5 1811 1686 if eval "test \"`echo '$''{'ac_cv_path_SIZE_FOR_TARGET'+set}'`\" = set"; then 1812 1687 echo $ac_n "(cached) $ac_c" 1>&6 … … 1841 1716 # intends 1842 1717 echo $ac_n "checking whether environment variable SIZE_FOR_TARGET is an absolute path""... $ac_c" 1>&6 1843 echo "configure:1 844: checking whether environment variable SIZE_FOR_TARGET is an absolute path" >&51718 echo "configure:1719: checking whether environment variable SIZE_FOR_TARGET is an absolute path" >&5 1844 1719 case "$SIZE_FOR_TARGET" in 1845 1720 /*) # valid … … 1858 1733 set dummy "$program_prefix"size; ac_word=$2 1859 1734 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1860 echo "configure:1 861: checking for $ac_word" >&51735 echo "configure:1736: checking for $ac_word" >&5 1861 1736 if eval "test \"`echo '$''{'ac_cv_path_SIZE_FOR_TARGET'+set}'`\" = set"; then 1862 1737 echo $ac_n "(cached) $ac_c" 1>&6 … … 1895 1770 1896 1771 echo $ac_n "checking target's strip""... $ac_c" 1>&6 1897 echo "configure:1 898: checking target's strip" >&51772 echo "configure:1773: checking target's strip" >&5 1898 1773 if eval "test \"`echo '$''{'ac_cv_path_STRIP_FOR_TARGET'+set}'`\" = set"; then 1899 1774 echo $ac_n "(cached) $ac_c" 1>&6 … … 1928 1803 # intends 1929 1804 echo $ac_n "checking whether environment variable STRIP_FOR_TARGET is an absolute path""... $ac_c" 1>&6 1930 echo "configure:1 931: checking whether environment variable STRIP_FOR_TARGET is an absolute path" >&51805 echo "configure:1806: checking whether environment variable STRIP_FOR_TARGET is an absolute path" >&5 1931 1806 case "$STRIP_FOR_TARGET" in 1932 1807 /*) # valid … … 1945 1820 set dummy "$program_prefix"strip; ac_word=$2 1946 1821 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1947 echo "configure:1 948: checking for $ac_word" >&51822 echo "configure:1823: checking for $ac_word" >&5 1948 1823 if eval "test \"`echo '$''{'ac_cv_path_STRIP_FOR_TARGET'+set}'`\" = set"; then 1949 1824 echo $ac_n "(cached) $ac_c" 1>&6 … … 1984 1859 if test "${target_cpu}" = "i386"; then 1985 1860 echo $ac_n "checking for 16 bit mode assembler support""... $ac_c" 1>&6 1986 echo "configure:1 987: checking for 16 bit mode assembler support" >&51861 echo "configure:1862: checking for 16 bit mode assembler support" >&5 1987 1862 if eval "test \"`echo '$''{'rtems_cv_prog_gas_code16'+set}'`\" = set"; then 1988 1863 echo $ac_n "(cached) $ac_c" 1>&6 … … 1994 1869 lgdt 0 1995 1870 EOF 1996 if { ac_try='$AS_FOR_TARGET -o conftest.o conftest.s'; { (eval echo configure:1 997: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; }; then1871 if { ac_try='$AS_FOR_TARGET -o conftest.o conftest.s'; { (eval echo configure:1872: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; }; then 1997 1872 rtems_cv_prog_gas_code16=yes 1998 1873 else … … 2017 1892 2018 1893 echo $ac_n "checking for make/custom/$RTEMS_BSP.cfg""... $ac_c" 1>&6 2019 echo "configure: 2020: checking for make/custom/$RTEMS_BSP.cfg" >&51894 echo "configure:1895: checking for make/custom/$RTEMS_BSP.cfg" >&5 2020 1895 if test -r "$srcdir/$RTEMS_TOPdir/make/custom/$RTEMS_BSP.cfg"; then 2021 1896 echo "$ac_t""yes" 1>&6 … … 2025 1900 2026 1901 echo $ac_n "checking whether BSP supports multiprocessing""... $ac_c" 1>&6 2027 echo "configure: 2028: checking whether BSP supports multiprocessing" >&51902 echo "configure:1903: checking whether BSP supports multiprocessing" >&5 2028 1903 if eval "test \"`echo '$''{'rtems_cv_HAS_MP'+set}'`\" = set"; then 2029 1904 echo $ac_n "(cached) $ac_c" 1>&6 … … 2049 1924 2050 1925 echo $ac_n "checking whether BSP supports networking""... $ac_c" 1>&6 2051 echo "configure: 2052: checking whether BSP supports networking" >&51926 echo "configure:1927: checking whether BSP supports networking" >&5 2052 1927 if eval "test \"`echo '$''{'rtems_cv_HAS_NETWORKING'+set}'`\" = set"; then 2053 1928 echo $ac_n "(cached) $ac_c" 1>&6 … … 2110 1985 if test "$RTEMS_HAS_RDBG" = "yes"; then 2111 1986 echo $ac_n "checking whether BSP supports librdbg""... $ac_c" 1>&6 2112 echo "configure: 2113: checking whether BSP supports librdbg" >&51987 echo "configure:1988: checking whether BSP supports librdbg" >&5 2113 1988 if eval "test \"`echo '$''{'rtems_cv_HAS_RDBG'+set}'`\" = set"; then 2114 1989 echo $ac_n "(cached) $ac_c" 1>&6 … … 2317 2192 2318 2193 ac_given_srcdir=$srcdir 2319 ac_given_INSTALL="$INSTALL"2320 2194 2321 2195 trap 'rm -fr `echo "Makefile … … 2363 2237 s%@mandir@%$mandir%g 2364 2238 s%@RTEMS_TOPdir@%$RTEMS_TOPdir%g 2365 s%@SET_MAKE@%$SET_MAKE%g2366 2239 s%@host@%$host%g 2367 2240 s%@host_alias@%$host_alias%g … … 2389 2262 s%@RTEMS_HAS_HWAPI@%$RTEMS_HAS_HWAPI%g 2390 2263 s%@RTEMS_BSP@%$RTEMS_BSP%g 2391 s%@INSTALL_PROGRAM@%$INSTALL_PROGRAM%g2392 s%@INSTALL_SCRIPT@%$INSTALL_SCRIPT%g2393 s%@INSTALL_DATA@%$INSTALL_DATA%g2394 2264 s%@RTEMS_HOST@%$RTEMS_HOST%g 2395 2265 s%@PROJECT_ROOT@%$PROJECT_ROOT%g … … 2512 2382 esac 2513 2383 2514 case "$ac_given_INSTALL" in2515 [/$]*) INSTALL="$ac_given_INSTALL" ;;2516 *) INSTALL="$ac_dots$ac_given_INSTALL" ;;2517 esac2518 2384 2519 2385 echo creating "$ac_file" … … 2531 2397 s%@srcdir@%$srcdir%g 2532 2398 s%@top_srcdir@%$top_srcdir%g 2533 s%@INSTALL@%$INSTALL%g2534 2399 " $ac_file_inputs | (eval "$ac_sed_cmds") > $ac_file 2535 2400 fi; done … … 2627 2492 ac_sub_cache_file="$ac_dots$cache_file" ;; 2628 2493 esac 2629 case "$ac_given_INSTALL" in2630 [/$]*) INSTALL="$ac_given_INSTALL" ;;2631 *) INSTALL="$ac_dots$ac_given_INSTALL" ;;2632 esac2633 2494 2634 2495 echo "running ${CONFIG_SHELL-/bin/sh} $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_sub_srcdir" -
c/src/lib/configure.in
r95ba459 r3ac8e590 1 1 dnl Process this file with autoconf to produce a configure script. 2 2 dnl 3 dnl 3 dnl $Id$ 4 4 5 5 AC_PREREQ(2.13) … … 8 8 AC_CONFIG_AUX_DIR(../../..) 9 9 10 AC_PROG_MAKE_SET11 10 RTEMS_CANONICAL_TARGET_CPU 12 11 AM_INIT_AUTOMAKE(rtems-c-src-lib,RTEMS_VERSION,no) 13 12 AM_MAINTAINER_MODE 14 13 … … 16 15 RTEMS_ENABLE_NETWORKING 17 16 RTEMS_ENABLE_RDBG 18 RTEMS_ENABLE_CXX19 RTEMS_ENABLE_GCC2820 17 RTEMS_ENABLE_LIBCDIR 21 18 RTEMS_ENABLE_BARE … … 23 20 24 21 RTEMS_ENV_RTEMSBSP 25 26 AC_PROG_INSTALL27 22 28 23 RTEMS_CHECK_CPU
Note: See TracChangeset
for help on using the changeset viewer.