Changeset 2c3840b in rtems
- Timestamp:
- 09/30/98 20:58:39 (25 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- b8ea1c8e
- Parents:
- 2405b767
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
aclocal.m4
r2405b767 r2c3840b 1 1 dnl aclocal.m4 generated automatically by aclocal 1.2 2 2 3 dnl $Id$ 3 dnl 4 dnl $Id$ 5 dnl 4 6 5 7 dnl macro to detect mkdir … … 41 43 42 44 43 dnl $Id$ 45 dnl 46 dnl $Id$ 47 dnl 44 48 45 49 dnl canonicalize target name … … 57 61 ]) 58 62 63 dnl 64 dnl $Id$ 65 dnl 59 66 dnl Set program_prefix 60 67 dnl … … 260 267 ]) 261 268 269 dnl 262 270 dnl $Id$ 263 271 dnl … … 356 364 ]) 357 365 366 dnl 367 dnl $Id$ 368 dnl 369 358 370 AC_DEFUN(RTEMS_AR_FOR_TARGET_S, 359 371 [ … … 378 390 379 391 392 dnl 393 dnl $Id$ 394 dnl 395 396 dnl check for i386 gas supporting 16 bit mode 397 398 AC_DEFUN(RTEMS_I386_GAS_CODE16, 399 if test "${target_cpu}" = "i386"; then 400 AC_CACHE_CHECK([for 16 bit mode assembler support], 401 rtems_cv_prog_gas_code16, 402 [cat > conftest.s << EOF 403 .code16 404 data32 addr32 lgdt 0 405 EOF 406 if AC_TRY_COMMAND($AS_FOR_TARGET -o conftest.o conftest.s); then 407 rtems_cv_prog_gas_code16=yes 408 else 409 rtems_cv_prog_gas_code16=no 410 fi]) 411 RTEMS_GAS_CODE16="$rtems_cv_prog_gas_code16" 412 fi 413 ) 414 415 416 dnl 417 dnl $Id$ 418 dnl 380 419 dnl Detect the Cygwin32 environment (unix under Win32) 381 420 dnl … … 397 436 398 437 438 dnl 439 dnl $Id$ 440 dnl 399 441 dnl Set the EXE extension 400 442 dnl … … 530 572 ]) 531 573 532 dnl $Id$ 574 dnl 575 dnl $Id$ 576 dnl 533 577 534 578 dnl RTEMS_CHECK_MAKEFILE(path) … … 541 585 ]) 542 586 543 dnl $Id$ 587 dnl 588 dnl $Id$ 589 dnl 544 590 545 591 dnl RTEMS_CHECK_FILES_IN(path,file,var) … … 547 593 dnl file .. name of the files to search for 548 594 dnl var .. shell variable to append files found 595 549 596 AC_DEFUN(RTEMS_CHECK_FILES_IN, 550 597 [ -
aclocal/i386-gas-code16.m4
r2405b767 r2c3840b 4 4 5 5 dnl check for i386 gas supporting 16 bit mode 6 dnl - binutils 2.9.1.0.7 and higher 6 7 7 8 AC_DEFUN(RTEMS_I386_GAS_CODE16, … … 18 19 rtems_cv_prog_gas_code16=no 19 20 fi]) 20 if test "$rtems_cv_prog_gas_code16" = "yes"; then 21 AC_DEFINE(RTEMS_PROG_GAS_CODE16) 22 fi 21 RTEMS_GAS_CODE16="$rtems_cv_prog_gas_code16" 23 22 fi 24 23 ) -
c/src/lib/libbsp/i386/i386ex/start/Makefile.in
r2405b767 r2c3840b 8 8 RTEMS_ROOT = @top_srcdir@ 9 9 PROJECT_ROOT = @PROJECT_ROOT@ 10 RTEMS_GAS_CODE16 = @RTEMS_GAS_CODE16@ 10 11 11 12 PGMS=${ARCH}/start.o … … 33 34 # 34 35 35 DEFINES += 36 ifeq ($(RTEMS_GAS_CODE16),yes) 37 DEFINES += -DNEXT_GAS 38 endif 36 39 CPPFLAGS += 37 40 CFLAGS += -
c/src/lib/libbsp/i386/i386ex/start/start.s
r2405b767 r2c3840b 41 41 42 42 /* 43 * Needed for binutils 2.9.1.0.7 and higher 44 * #define NEXT_GAS 43 * NEXT_GAS Needed for binutils 2.9.1.0.7 and higher 45 44 */ 46 45 47 #define NEXT_GAS48 49 46 EXTERN (boot_card) /* exits to bspstart */ 50 47 EXTERN (stack_start) /* defined in startup/linkcmds */ -
c/src/lib/libbsp/i386/i386ex/startup/Makefile.in
r2405b767 r2c3840b 38 38 39 39 #DEFINES += -DPRINTON 40 DEFINES += -I$(srcdir) 40 DEFINES += -I$(srcdir) 41 41 CPPFLAGS += 42 42 CFLAGS += -g -
c/src/lib/libbsp/i386/pc386/start/Makefile.in
r2405b767 r2c3840b 8 8 RTEMS_ROOT = @top_srcdir@ 9 9 PROJECT_ROOT = @PROJECT_ROOT@ 10 RTEMS_GAS_CODE16 = @RTEMS_GAS_CODE16@ 10 11 11 12 PGMS=${ARCH}/start.o ${ARCH}/start16.bin … … 33 34 # 34 35 35 DEFINES += 36 ifeq ($(RTEMS_GAS_CODE16),yes) 37 DEFINES += -DNEXT_GAS 38 endif 36 39 CPPFLAGS += 37 40 CFLAGS += -
configure
r2405b767 r2c3840b 1 1 #! /bin/sh 2 3 4 5 6 7 # Check to see if we're running under Cygwin32, without using 8 # AC_CANONICAL_*. If so, set output variable CYGWIN32 to "yes". 9 # Otherwise set it to "no". 10 11 12 13 14 15 # Check to see if we're running under Win32, without using 16 # AC_CANONICAL_*. If so, set output variable EXEEXT to ".exe". 17 # Otherwise set it to "". 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 2 36 3 37 # Guess values for system-dependent variables and create Makefiles. … … 559 593 560 594 echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 561 echo "configure:5 62: checking whether ${MAKE-make} sets \${MAKE}" >&5595 echo "configure:596: checking whether ${MAKE-make} sets \${MAKE}" >&5 562 596 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'` 563 597 if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then … … 632 666 633 667 echo $ac_n "checking host system type""... $ac_c" 1>&6 634 echo "configure:6 35: checking host system type" >&5668 echo "configure:669: checking host system type" >&5 635 669 636 670 host_alias=$host … … 653 687 654 688 echo $ac_n "checking target system type""... $ac_c" 1>&6 655 echo "configure:6 56: checking target system type" >&5689 echo "configure:690: checking target system type" >&5 656 690 657 691 target_alias=$target … … 671 705 672 706 echo $ac_n "checking build system type""... $ac_c" 1>&6 673 echo "configure: 674: checking build system type" >&5707 echo "configure:708: checking build system type" >&5 674 708 675 709 build_alias=$build … … 824 858 set dummy cat; ac_word=$2 825 859 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 826 echo "configure:8 27: checking for $ac_word" >&5860 echo "configure:861: checking for $ac_word" >&5 827 861 if eval "test \"`echo '$''{'ac_cv_path_CAT'+set}'`\" = set"; then 828 862 echo $ac_n "(cached) $ac_c" 1>&6 … … 855 889 set dummy rm; ac_word=$2 856 890 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 857 echo "configure:8 58: checking for $ac_word" >&5891 echo "configure:892: checking for $ac_word" >&5 858 892 if eval "test \"`echo '$''{'ac_cv_path_RM'+set}'`\" = set"; then 859 893 echo $ac_n "(cached) $ac_c" 1>&6 … … 886 920 set dummy cp; ac_word=$2 887 921 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 888 echo "configure: 889: checking for $ac_word" >&5922 echo "configure:923: checking for $ac_word" >&5 889 923 if eval "test \"`echo '$''{'ac_cv_path_CP'+set}'`\" = set"; then 890 924 echo $ac_n "(cached) $ac_c" 1>&6 … … 917 951 set dummy mv; ac_word=$2 918 952 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 919 echo "configure:9 20: checking for $ac_word" >&5953 echo "configure:954: checking for $ac_word" >&5 920 954 if eval "test \"`echo '$''{'ac_cv_path_MV'+set}'`\" = set"; then 921 955 echo $ac_n "(cached) $ac_c" 1>&6 … … 948 982 set dummy ln; ac_word=$2 949 983 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 950 echo "configure:9 51: checking for $ac_word" >&5984 echo "configure:985: checking for $ac_word" >&5 951 985 if eval "test \"`echo '$''{'ac_cv_path_LN'+set}'`\" = set"; then 952 986 echo $ac_n "(cached) $ac_c" 1>&6 … … 977 1011 978 1012 echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6 979 echo "configure: 980: checking whether ln -s works" >&51013 echo "configure:1014: checking whether ln -s works" >&5 980 1014 if eval "test \"`echo '$''{'ac_cv_prog_LN_S'+set}'`\" = set"; then 981 1015 echo $ac_n "(cached) $ac_c" 1>&6 … … 1000 1034 set dummy chmod; ac_word=$2 1001 1035 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1002 echo "configure:10 03: checking for $ac_word" >&51036 echo "configure:1037: checking for $ac_word" >&5 1003 1037 if eval "test \"`echo '$''{'ac_cv_path_CHMOD'+set}'`\" = set"; then 1004 1038 echo $ac_n "(cached) $ac_c" 1>&6 … … 1031 1065 set dummy sort; ac_word=$2 1032 1066 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1033 echo "configure:10 34: checking for $ac_word" >&51067 echo "configure:1068: checking for $ac_word" >&5 1034 1068 if eval "test \"`echo '$''{'ac_cv_path_SORT'+set}'`\" = set"; then 1035 1069 echo $ac_n "(cached) $ac_c" 1>&6 … … 1070 1104 # ./install, which can be erroneously created by make from ./install.sh. 1071 1105 echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 1072 echo "configure:1 073: checking for a BSD compatible install" >&51106 echo "configure:1107: checking for a BSD compatible install" >&5 1073 1107 if test -z "$INSTALL"; then 1074 1108 if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then … … 1123 1157 set dummy mkdir; ac_word=$2 1124 1158 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1125 echo "configure:11 26: checking for $ac_word" >&51159 echo "configure:1160: checking for $ac_word" >&5 1126 1160 if eval "test \"`echo '$''{'ac_cv_path_MKDIR'+set}'`\" = set"; then 1127 1161 echo $ac_n "(cached) $ac_c" 1>&6 … … 1155 1189 1156 1190 echo $ac_n "checking for working $MKDIR -m 0755""... $ac_c" 1>&6 1157 echo "configure:11 58: checking for working $MKDIR -m 0755" >&51191 echo "configure:1192: checking for working $MKDIR -m 0755" >&5 1158 1192 if eval "test \"`echo '$''{'rtems_cv_prog_MKDIR_P'+set}'`\" = set"; then 1159 1193 echo $ac_n "(cached) $ac_c" 1>&6 … … 1172 1206 1173 1207 echo $ac_n "checking for working $MKDIR -p""... $ac_c" 1>&6 1174 echo "configure:1 175: checking for working $MKDIR -p" >&51208 echo "configure:1209: checking for working $MKDIR -p" >&5 1175 1209 if eval "test \"`echo '$''{'rtems_cv_prog_mkdir_p'+set}'`\" = set"; then 1176 1210 echo $ac_n "(cached) $ac_c" 1>&6 … … 1192 1226 set dummy touch; ac_word=$2 1193 1227 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1194 echo "configure:1 195: checking for $ac_word" >&51228 echo "configure:1229: checking for $ac_word" >&5 1195 1229 if eval "test \"`echo '$''{'ac_cv_path_TOUCH'+set}'`\" = set"; then 1196 1230 echo $ac_n "(cached) $ac_c" 1>&6 … … 1223 1257 set dummy cmp; ac_word=$2 1224 1258 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1225 echo "configure:12 26: checking for $ac_word" >&51259 echo "configure:1260: checking for $ac_word" >&5 1226 1260 if eval "test \"`echo '$''{'ac_cv_path_CMP'+set}'`\" = set"; then 1227 1261 echo $ac_n "(cached) $ac_c" 1>&6 … … 1255 1289 set dummy sed; ac_word=$2 1256 1290 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1257 echo "configure:12 58: checking for $ac_word" >&51291 echo "configure:1292: checking for $ac_word" >&5 1258 1292 if eval "test \"`echo '$''{'ac_cv_path_SED'+set}'`\" = set"; then 1259 1293 echo $ac_n "(cached) $ac_c" 1>&6 … … 1288 1322 set dummy $ac_prog; ac_word=$2 1289 1323 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1290 echo "configure:1 291: checking for $ac_word" >&51324 echo "configure:1325: checking for $ac_word" >&5 1291 1325 if eval "test \"`echo '$''{'ac_cv_path_M4'+set}'`\" = set"; then 1292 1326 echo $ac_n "(cached) $ac_c" 1>&6 … … 1325 1359 set dummy $ac_prog; ac_word=$2 1326 1360 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1327 echo "configure:13 28: checking for $ac_word" >&51361 echo "configure:1362: checking for $ac_word" >&5 1328 1362 if eval "test \"`echo '$''{'ac_cv_path_KSH'+set}'`\" = set"; then 1329 1363 echo $ac_n "(cached) $ac_c" 1>&6 … … 1403 1437 *) 1404 1438 echo $ac_n "checking rtems target cpu""... $ac_c" 1>&6 1405 echo "configure:14 06: checking rtems target cpu" >&51439 echo "configure:1440: checking rtems target cpu" >&5 1406 1440 target_cpu=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'` 1407 1441 echo "$ac_t""$target_cpu" 1>&6 … … 1422 1456 # Is this a supported CPU? 1423 1457 echo $ac_n "checking if cpu $target_cpu is supported""... $ac_c" 1>&6 1424 echo "configure:14 25: checking if cpu $target_cpu is supported" >&51458 echo "configure:1459: checking if cpu $target_cpu is supported" >&5 1425 1459 if test -d "$srcdir/c/src/exec/score/cpu/$target_cpu"; then 1426 1460 echo "$ac_t""yes" 1>&6 … … 1447 1481 set dummy $ac_prog; ac_word=$2 1448 1482 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1449 echo "configure:14 50: checking for $ac_word" >&51483 echo "configure:1484: checking for $ac_word" >&5 1450 1484 if eval "test \"`echo '$''{'ac_cv_path_CC_FOR_TARGET'+set}'`\" = set"; then 1451 1485 echo $ac_n "(cached) $ac_c" 1>&6 … … 1487 1521 1488 1522 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 1489 echo "configure:1 490: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&51523 echo "configure:1524: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 1490 1524 1491 1525 ac_ext=c … … 1497 1531 1498 1532 cat > conftest.$ac_ext <<EOF 1499 #line 15 00"configure"1533 #line 1534 "configure" 1500 1534 #include "confdefs.h" 1501 1535 main(){return(0);} 1502 1536 EOF 1503 if { (eval echo configure:15 04: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then1537 if { (eval echo configure:1538: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then 1504 1538 ac_cv_prog_cc_works=yes 1505 1539 # If we can't run a trivial program, we are probably using a cross compiler. … … 1521 1555 fi 1522 1556 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 1523 echo "configure:15 24: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&51557 echo "configure:1558: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 1524 1558 echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 1525 1559 cross_compiling=$ac_cv_prog_cc_cross 1526 1560 1527 1561 echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 1528 echo "configure:15 29: checking whether we are using GNU C" >&51562 echo "configure:1563: checking whether we are using GNU C" >&5 1529 1563 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then 1530 1564 echo $ac_n "(cached) $ac_c" 1>&6 … … 1535 1569 #endif 1536 1570 EOF 1537 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:15 38: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then1571 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1572: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 1538 1572 ac_cv_prog_gcc=yes 1539 1573 else … … 1550 1584 CFLAGS= 1551 1585 echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 1552 echo "configure:15 53: checking whether ${CC-cc} accepts -g" >&51586 echo "configure:1587: checking whether ${CC-cc} accepts -g" >&5 1553 1587 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then 1554 1588 echo $ac_n "(cached) $ac_c" 1>&6 … … 1592 1626 1593 1627 echo $ac_n "checking whether $CC_FOR_TARGET accepts -specs""... $ac_c" 1>&6 1594 echo "configure:1 595: checking whether $CC_FOR_TARGET accepts -specs" >&51628 echo "configure:1629: checking whether $CC_FOR_TARGET accepts -specs" >&5 1595 1629 if eval "test \"`echo '$''{'rtems_cv_gcc_specs'+set}'`\" = set"; then 1596 1630 echo $ac_n "(cached) $ac_c" 1>&6 … … 1613 1647 1614 1648 echo $ac_n "checking whether $CC_FOR_TARGET accepts --pipe""... $ac_c" 1>&6 1615 echo "configure:16 16: checking whether $CC_FOR_TARGET accepts --pipe" >&51649 echo "configure:1650: checking whether $CC_FOR_TARGET accepts --pipe" >&5 1616 1650 if eval "test \"`echo '$''{'rtems_cv_gcc_pipe'+set}'`\" = set"; then 1617 1651 echo $ac_n "(cached) $ac_c" 1>&6 … … 1654 1688 set dummy $ac_prog; ac_word=$2 1655 1689 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1656 echo "configure:16 57: checking for $ac_word" >&51690 echo "configure:1691: checking for $ac_word" >&5 1657 1691 if eval "test \"`echo '$''{'ac_cv_path_CXX_FOR_TARGET'+set}'`\" = set"; then 1658 1692 echo $ac_n "(cached) $ac_c" 1>&6 … … 1694 1728 1695 1729 echo $ac_n "checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) works""... $ac_c" 1>&6 1696 echo "configure:1 697: checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) works" >&51730 echo "configure:1731: checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) works" >&5 1697 1731 1698 1732 ac_ext=C … … 1704 1738 1705 1739 cat > conftest.$ac_ext <<EOF 1706 #line 17 07"configure"1740 #line 1741 "configure" 1707 1741 #include "confdefs.h" 1708 1742 main(){return(0);} 1709 1743 EOF 1710 if { (eval echo configure:17 11: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then1744 if { (eval echo configure:1745: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then 1711 1745 ac_cv_prog_cxx_works=yes 1712 1746 # If we can't run a trivial program, we are probably using a cross compiler. … … 1734 1768 fi 1735 1769 echo $ac_n "checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 1736 echo "configure:17 37: checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) is a cross-compiler" >&51770 echo "configure:1771: checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) is a cross-compiler" >&5 1737 1771 echo "$ac_t""$ac_cv_prog_cxx_cross" 1>&6 1738 1772 cross_compiling=$ac_cv_prog_cxx_cross 1739 1773 1740 1774 echo $ac_n "checking whether we are using GNU C++""... $ac_c" 1>&6 1741 echo "configure:17 42: checking whether we are using GNU C++" >&51775 echo "configure:1776: checking whether we are using GNU C++" >&5 1742 1776 if eval "test \"`echo '$''{'ac_cv_prog_gxx'+set}'`\" = set"; then 1743 1777 echo $ac_n "(cached) $ac_c" 1>&6 … … 1748 1782 #endif 1749 1783 EOF 1750 if { ac_try='${CXX-g++} -E conftest.C'; { (eval echo configure:17 51: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then1784 if { ac_try='${CXX-g++} -E conftest.C'; { (eval echo configure:1785: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 1751 1785 ac_cv_prog_gxx=yes 1752 1786 else … … 1763 1797 CXXFLAGS= 1764 1798 echo $ac_n "checking whether ${CXX-g++} accepts -g""... $ac_c" 1>&6 1765 echo "configure:1 766: checking whether ${CXX-g++} accepts -g" >&51799 echo "configure:1800: checking whether ${CXX-g++} accepts -g" >&5 1766 1800 if eval "test \"`echo '$''{'ac_cv_prog_cxx_g'+set}'`\" = set"; then 1767 1801 echo $ac_n "(cached) $ac_c" 1>&6 … … 1817 1851 1818 1852 echo $ac_n "checking target's ar""... $ac_c" 1>&6 1819 echo "configure:18 20: checking target's ar" >&51853 echo "configure:1854: checking target's ar" >&5 1820 1854 if eval "test \"`echo '$''{'ac_cv_path_AR_FOR_TARGET'+set}'`\" = set"; then 1821 1855 echo $ac_n "(cached) $ac_c" 1>&6 … … 1850 1884 # intends 1851 1885 echo $ac_n "checking whether environment variable AR_FOR_TARGET is an absolute path""... $ac_c" 1>&6 1852 echo "configure:18 53: checking whether environment variable AR_FOR_TARGET is an absolute path" >&51886 echo "configure:1887: checking whether environment variable AR_FOR_TARGET is an absolute path" >&5 1853 1887 case "$AR_FOR_TARGET" in 1854 1888 /*) # valid … … 1867 1901 set dummy "$program_prefix"ar; ac_word=$2 1868 1902 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1869 echo "configure:1 870: checking for $ac_word" >&51903 echo "configure:1904: checking for $ac_word" >&5 1870 1904 if eval "test \"`echo '$''{'ac_cv_path_AR_FOR_TARGET'+set}'`\" = set"; then 1871 1905 echo $ac_n "(cached) $ac_c" 1>&6 … … 1900 1934 1901 1935 echo $ac_n "checking target's as""... $ac_c" 1>&6 1902 echo "configure:19 03: checking target's as" >&51936 echo "configure:1937: checking target's as" >&5 1903 1937 if eval "test \"`echo '$''{'ac_cv_path_AS_FOR_TARGET'+set}'`\" = set"; then 1904 1938 echo $ac_n "(cached) $ac_c" 1>&6 … … 1933 1967 # intends 1934 1968 echo $ac_n "checking whether environment variable AS_FOR_TARGET is an absolute path""... $ac_c" 1>&6 1935 echo "configure:19 36: checking whether environment variable AS_FOR_TARGET is an absolute path" >&51969 echo "configure:1970: checking whether environment variable AS_FOR_TARGET is an absolute path" >&5 1936 1970 case "$AS_FOR_TARGET" in 1937 1971 /*) # valid … … 1950 1984 set dummy "$program_prefix"as; ac_word=$2 1951 1985 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1952 echo "configure:19 53: checking for $ac_word" >&51986 echo "configure:1987: checking for $ac_word" >&5 1953 1987 if eval "test \"`echo '$''{'ac_cv_path_AS_FOR_TARGET'+set}'`\" = set"; then 1954 1988 echo $ac_n "(cached) $ac_c" 1>&6 … … 1983 2017 1984 2018 echo $ac_n "checking target's ld""... $ac_c" 1>&6 1985 echo "configure: 1986: checking target's ld" >&52019 echo "configure:2020: checking target's ld" >&5 1986 2020 if eval "test \"`echo '$''{'ac_cv_path_LD_FOR_TARGET'+set}'`\" = set"; then 1987 2021 echo $ac_n "(cached) $ac_c" 1>&6 … … 2016 2050 # intends 2017 2051 echo $ac_n "checking whether environment variable LD_FOR_TARGET is an absolute path""... $ac_c" 1>&6 2018 echo "configure:20 19: checking whether environment variable LD_FOR_TARGET is an absolute path" >&52052 echo "configure:2053: checking whether environment variable LD_FOR_TARGET is an absolute path" >&5 2019 2053 case "$LD_FOR_TARGET" in 2020 2054 /*) # valid … … 2033 2067 set dummy "$program_prefix"ld; ac_word=$2 2034 2068 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2035 echo "configure:20 36: checking for $ac_word" >&52069 echo "configure:2070: checking for $ac_word" >&5 2036 2070 if eval "test \"`echo '$''{'ac_cv_path_LD_FOR_TARGET'+set}'`\" = set"; then 2037 2071 echo $ac_n "(cached) $ac_c" 1>&6 … … 2066 2100 2067 2101 echo $ac_n "checking target's nm""... $ac_c" 1>&6 2068 echo "configure:2 069: checking target's nm" >&52102 echo "configure:2103: checking target's nm" >&5 2069 2103 if eval "test \"`echo '$''{'ac_cv_path_NM_FOR_TARGET'+set}'`\" = set"; then 2070 2104 echo $ac_n "(cached) $ac_c" 1>&6 … … 2099 2133 # intends 2100 2134 echo $ac_n "checking whether environment variable NM_FOR_TARGET is an absolute path""... $ac_c" 1>&6 2101 echo "configure:21 02: checking whether environment variable NM_FOR_TARGET is an absolute path" >&52135 echo "configure:2136: checking whether environment variable NM_FOR_TARGET is an absolute path" >&5 2102 2136 case "$NM_FOR_TARGET" in 2103 2137 /*) # valid … … 2116 2150 set dummy "$program_prefix"nm; ac_word=$2 2117 2151 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2118 echo "configure:21 19: checking for $ac_word" >&52152 echo "configure:2153: checking for $ac_word" >&5 2119 2153 if eval "test \"`echo '$''{'ac_cv_path_NM_FOR_TARGET'+set}'`\" = set"; then 2120 2154 echo $ac_n "(cached) $ac_c" 1>&6 … … 2150 2184 2151 2185 echo $ac_n "checking target's ranlib""... $ac_c" 1>&6 2152 echo "configure:21 53: checking target's ranlib" >&52186 echo "configure:2187: checking target's ranlib" >&5 2153 2187 if eval "test \"`echo '$''{'ac_cv_path_RANLIB_FOR_TARGET'+set}'`\" = set"; then 2154 2188 echo $ac_n "(cached) $ac_c" 1>&6 … … 2183 2217 # intends 2184 2218 echo $ac_n "checking whether environment variable RANLIB_FOR_TARGET is an absolute path""... $ac_c" 1>&6 2185 echo "configure:2 186: checking whether environment variable RANLIB_FOR_TARGET is an absolute path" >&52219 echo "configure:2220: checking whether environment variable RANLIB_FOR_TARGET is an absolute path" >&5 2186 2220 case "$RANLIB_FOR_TARGET" in 2187 2221 /*) # valid … … 2200 2234 set dummy "$program_prefix"ranlib; ac_word=$2 2201 2235 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2202 echo "configure:22 03: checking for $ac_word" >&52236 echo "configure:2237: checking for $ac_word" >&5 2203 2237 if eval "test \"`echo '$''{'ac_cv_path_RANLIB_FOR_TARGET'+set}'`\" = set"; then 2204 2238 echo $ac_n "(cached) $ac_c" 1>&6 … … 2235 2269 2236 2270 echo $ac_n "checking whether $AR_FOR_TARGET -s works""... $ac_c" 1>&6 2237 echo "configure:22 38: checking whether $AR_FOR_TARGET -s works" >&52271 echo "configure:2272: checking whether $AR_FOR_TARGET -s works" >&5 2238 2272 if eval "test \"`echo '$''{'rtems_cv_AR_FOR_TARGET_S'+set}'`\" = set"; then 2239 2273 echo $ac_n "(cached) $ac_c" 1>&6 … … 2244 2278 { return b; } 2245 2279 EOF 2246 if { ac_try='$CC_FOR_TARGET -o conftest.o -c conftest.$ac_ext'; { (eval echo configure:22 47: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } \2247 && { ac_try='$AR_FOR_TARGET -sr conftest.a conftest.o'; { (eval echo configure:22 48: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } \2280 if { ac_try='$CC_FOR_TARGET -o conftest.o -c conftest.$ac_ext'; { (eval echo configure:2281: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } \ 2281 && { ac_try='$AR_FOR_TARGET -sr conftest.a conftest.o'; { (eval echo configure:2282: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } \ 2248 2282 && test -s conftest.a ; \ 2249 2283 then … … 2270 2304 2271 2305 echo $ac_n "checking target's objcopy""... $ac_c" 1>&6 2272 echo "configure:2 273: checking target's objcopy" >&52306 echo "configure:2307: checking target's objcopy" >&5 2273 2307 if eval "test \"`echo '$''{'ac_cv_path_OBJCOPY_FOR_TARGET'+set}'`\" = set"; then 2274 2308 echo $ac_n "(cached) $ac_c" 1>&6 … … 2303 2337 # intends 2304 2338 echo $ac_n "checking whether environment variable OBJCOPY_FOR_TARGET is an absolute path""... $ac_c" 1>&6 2305 echo "configure:23 06: checking whether environment variable OBJCOPY_FOR_TARGET is an absolute path" >&52339 echo "configure:2340: checking whether environment variable OBJCOPY_FOR_TARGET is an absolute path" >&5 2306 2340 case "$OBJCOPY_FOR_TARGET" in 2307 2341 /*) # valid … … 2320 2354 set dummy "$program_prefix"objcopy; ac_word=$2 2321 2355 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2322 echo "configure:23 23: checking for $ac_word" >&52356 echo "configure:2357: checking for $ac_word" >&5 2323 2357 if eval "test \"`echo '$''{'ac_cv_path_OBJCOPY_FOR_TARGET'+set}'`\" = set"; then 2324 2358 echo $ac_n "(cached) $ac_c" 1>&6 … … 2353 2387 2354 2388 echo $ac_n "checking target's size""... $ac_c" 1>&6 2355 echo "configure:23 56: checking target's size" >&52389 echo "configure:2390: checking target's size" >&5 2356 2390 if eval "test \"`echo '$''{'ac_cv_path_SIZE_FOR_TARGET'+set}'`\" = set"; then 2357 2391 echo $ac_n "(cached) $ac_c" 1>&6 … … 2386 2420 # intends 2387 2421 echo $ac_n "checking whether environment variable SIZE_FOR_TARGET is an absolute path""... $ac_c" 1>&6 2388 echo "configure:2 389: checking whether environment variable SIZE_FOR_TARGET is an absolute path" >&52422 echo "configure:2423: checking whether environment variable SIZE_FOR_TARGET is an absolute path" >&5 2389 2423 case "$SIZE_FOR_TARGET" in 2390 2424 /*) # valid … … 2403 2437 set dummy "$program_prefix"size; ac_word=$2 2404 2438 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2405 echo "configure:24 06: checking for $ac_word" >&52439 echo "configure:2440: checking for $ac_word" >&5 2406 2440 if eval "test \"`echo '$''{'ac_cv_path_SIZE_FOR_TARGET'+set}'`\" = set"; then 2407 2441 echo $ac_n "(cached) $ac_c" 1>&6 … … 2436 2470 2437 2471 2472 if test "${target_cpu}" = "i386"; then 2473 echo $ac_n "checking for 16 bit mode assembler support""... $ac_c" 1>&6 2474 echo "configure:2475: checking for 16 bit mode assembler support" >&5 2475 if eval "test \"`echo '$''{'rtems_cv_prog_gas_code16'+set}'`\" = set"; then 2476 echo $ac_n "(cached) $ac_c" 1>&6 2477 else 2478 cat > conftest.s << EOF 2479 .code16 2480 data32 addr32 lgdt 0 2481 EOF 2482 if { ac_try='$AS_FOR_TARGET -o conftest.o conftest.s'; { (eval echo configure:2483: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; }; then 2483 rtems_cv_prog_gas_code16=yes 2484 else 2485 rtems_cv_prog_gas_code16=no 2486 fi 2487 fi 2488 2489 echo "$ac_t""$rtems_cv_prog_gas_code16" 1>&6 2490 RTEMS_GAS_CODE16="$rtems_cv_prog_gas_code16" 2491 fi 2492 2493 2438 2494 # Extract the first word of "gcc", so it can be a program name with args. 2439 2495 set dummy gcc; ac_word=$2 2440 2496 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2441 echo "configure:24 42: checking for $ac_word" >&52497 echo "configure:2498: checking for $ac_word" >&5 2442 2498 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 2443 2499 echo $ac_n "(cached) $ac_c" 1>&6 … … 2468 2524 set dummy cc; ac_word=$2 2469 2525 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2470 echo "configure:2 471: checking for $ac_word" >&52526 echo "configure:2527: checking for $ac_word" >&5 2471 2527 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 2472 2528 echo $ac_n "(cached) $ac_c" 1>&6 … … 2516 2572 2517 2573 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 2518 echo "configure:25 19: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&52574 echo "configure:2575: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 2519 2575 2520 2576 ac_ext=c … … 2526 2582 2527 2583 cat > conftest.$ac_ext <<EOF 2528 #line 25 29"configure"2584 #line 2585 "configure" 2529 2585 #include "confdefs.h" 2530 2586 main(){return(0);} 2531 2587 EOF 2532 if { (eval echo configure:25 33: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then2588 if { (eval echo configure:2589: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then 2533 2589 ac_cv_prog_cc_works=yes 2534 2590 # If we can't run a trivial program, we are probably using a cross compiler. … … 2550 2606 fi 2551 2607 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 2552 echo "configure:2 553: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&52608 echo "configure:2609: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 2553 2609 echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 2554 2610 cross_compiling=$ac_cv_prog_cc_cross 2555 2611 2556 2612 echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 2557 echo "configure:2 558: checking whether we are using GNU C" >&52613 echo "configure:2614: checking whether we are using GNU C" >&5 2558 2614 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then 2559 2615 echo $ac_n "(cached) $ac_c" 1>&6 … … 2564 2620 #endif 2565 2621 EOF 2566 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:2 567: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then2622 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:2623: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 2567 2623 ac_cv_prog_gcc=yes 2568 2624 else … … 2579 2635 CFLAGS= 2580 2636 echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 2581 echo "configure:2 582: checking whether ${CC-cc} accepts -g" >&52637 echo "configure:2638: checking whether ${CC-cc} accepts -g" >&5 2582 2638 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then 2583 2639 echo $ac_n "(cached) $ac_c" 1>&6 … … 2608 2664 2609 2665 echo $ac_n "checking for Cygwin32 environment""... $ac_c" 1>&6 2610 echo "configure:26 11: checking for Cygwin32 environment" >&52666 echo "configure:2667: checking for Cygwin32 environment" >&5 2611 2667 if eval "test \"`echo '$''{'rtems_cv_cygwin32'+set}'`\" = set"; then 2612 2668 echo $ac_n "(cached) $ac_c" 1>&6 2613 2669 else 2614 2670 cat > conftest.$ac_ext <<EOF 2615 #line 26 16"configure"2671 #line 2672 "configure" 2616 2672 #include "confdefs.h" 2617 2673 … … 2620 2676 ; return 0; } 2621 2677 EOF 2622 if { (eval echo configure:26 23: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then2678 if { (eval echo configure:2679: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 2623 2679 rm -rf conftest* 2624 2680 rtems_cv_cygwin32=yes … … 2638 2694 2639 2695 echo $ac_n "checking for executable suffix""... $ac_c" 1>&6 2640 echo "configure:26 41: checking for executable suffix" >&52696 echo "configure:2697: checking for executable suffix" >&5 2641 2697 if eval "test \"`echo '$''{'rtems_cv_exeext'+set}'`\" = set"; then 2642 2698 echo $ac_n "(cached) $ac_c" 1>&6 … … 2674 2730 do 2675 2731 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 2676 echo "configure:2 677: checking for $ac_func" >&52732 echo "configure:2733: checking for $ac_func" >&5 2677 2733 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 2678 2734 echo $ac_n "(cached) $ac_c" 1>&6 2679 2735 else 2680 2736 cat > conftest.$ac_ext <<EOF 2681 #line 2 682"configure"2737 #line 2738 "configure" 2682 2738 #include "confdefs.h" 2683 2739 /* System header to define __stub macros and hopefully few prototypes, … … 2702 2758 ; return 0; } 2703 2759 EOF 2704 if { (eval echo configure:27 05: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then2760 if { (eval echo configure:2761: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then 2705 2761 rm -rf conftest* 2706 2762 eval "ac_cv_func_$ac_func=yes" … … 2731 2787 2732 2788 echo $ac_n "checking whether $RTEMS_HOST supports System V semaphores""... $ac_c" 1>&6 2733 echo "configure:27 34: checking whether $RTEMS_HOST supports System V semaphores" >&52789 echo "configure:2790: checking whether $RTEMS_HOST supports System V semaphores" >&5 2734 2790 if eval "test \"`echo '$''{'rtems_cv_sysv_sem'+set}'`\" = set"; then 2735 2791 echo $ac_n "(cached) $ac_c" 1>&6 … … 2740 2796 else 2741 2797 cat > conftest.$ac_ext <<EOF 2742 #line 27 43"configure"2798 #line 2799 "configure" 2743 2799 #include "confdefs.h" 2744 2800 … … 2766 2822 2767 2823 EOF 2768 if { (eval echo configure:2 769: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null2824 if { (eval echo configure:2825: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null 2769 2825 then 2770 2826 rtems_cv_sysv_sem="yes" … … 2789 2845 2790 2846 echo $ac_n "checking whether $RTEMS_HOST supports System V shared memory""... $ac_c" 1>&6 2791 echo "configure:2 792: checking whether $RTEMS_HOST supports System V shared memory" >&52847 echo "configure:2848: checking whether $RTEMS_HOST supports System V shared memory" >&5 2792 2848 if eval "test \"`echo '$''{'rtems_cv_sysv_shm'+set}'`\" = set"; then 2793 2849 echo $ac_n "(cached) $ac_c" 1>&6 … … 2798 2854 else 2799 2855 cat > conftest.$ac_ext <<EOF 2800 #line 28 01"configure"2856 #line 2857 "configure" 2801 2857 #include "confdefs.h" 2802 2858 … … 2814 2870 2815 2871 EOF 2816 if { (eval echo configure:28 17: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null2872 if { (eval echo configure:2873: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null 2817 2873 then 2818 2874 rtems_cv_sysv_shm="yes" … … 2837 2893 2838 2894 echo $ac_n "checking whether $RTEMS_HOST supports System V messages""... $ac_c" 1>&6 2839 echo "configure:28 40: checking whether $RTEMS_HOST supports System V messages" >&52895 echo "configure:2896: checking whether $RTEMS_HOST supports System V messages" >&5 2840 2896 if eval "test \"`echo '$''{'rtems_cv_sysv_msg'+set}'`\" = set"; then 2841 2897 echo $ac_n "(cached) $ac_c" 1>&6 … … 2846 2902 else 2847 2903 cat > conftest.$ac_ext <<EOF 2848 #line 2 849"configure"2904 #line 2905 "configure" 2849 2905 #include "confdefs.h" 2850 2906 … … 2862 2918 2863 2919 EOF 2864 if { (eval echo configure:2 865: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null2920 if { (eval echo configure:2921: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null 2865 2921 then 2866 2922 rtems_cv_sysv_msg="yes" … … 2887 2943 2888 2944 echo $ac_n "checking for Makefile.in in c/src/exec/score/tools/$target_cpu""... $ac_c" 1>&6 2889 echo "configure:2 890: checking for Makefile.in in c/src/exec/score/tools/$target_cpu" >&52945 echo "configure:2946: checking for Makefile.in in c/src/exec/score/tools/$target_cpu" >&5 2890 2946 if test -d $srcdir/c/src/exec/score/tools/$target_cpu; then 2891 2947 rtems_av_save_dir=`pwd`; … … 2902 2958 2903 2959 echo $ac_n "checking for Makefile.in in c/src/exec/rtems""... $ac_c" 1>&6 2904 echo "configure:29 05: checking for Makefile.in in c/src/exec/rtems" >&52960 echo "configure:2961: checking for Makefile.in in c/src/exec/rtems" >&5 2905 2961 if test -d $srcdir/c/src/exec/rtems; then 2906 2962 rtems_av_save_dir=`pwd`; … … 2917 2973 2918 2974 echo $ac_n "checking for Makefile.in in c/src/exec/sapi""... $ac_c" 1>&6 2919 echo "configure:29 20: checking for Makefile.in in c/src/exec/sapi" >&52975 echo "configure:2976: checking for Makefile.in in c/src/exec/sapi" >&5 2920 2976 if test -d $srcdir/c/src/exec/sapi; then 2921 2977 rtems_av_save_dir=`pwd`; … … 2934 2990 2935 2991 echo $ac_n "checking for Makefile.in in c/src/exec/posix""... $ac_c" 1>&6 2936 echo "configure:29 37: checking for Makefile.in in c/src/exec/posix" >&52992 echo "configure:2993: checking for Makefile.in in c/src/exec/posix" >&5 2937 2993 if test -d $srcdir/c/src/exec/posix; then 2938 2994 rtems_av_save_dir=`pwd`; … … 2956 3012 if test -z "$rtems_bsp"; then 2957 3013 echo $ac_n "checking for bsps""... $ac_c" 1>&6 2958 echo "configure: 2959: checking for bsps" >&53014 echo "configure:3015: checking for bsps" >&5 2959 3015 files=`ls $srcdir/c/src/lib/libbsp/$target_cpu` 2960 3016 for file in $files; do … … 3021 3077 3022 3078 echo $ac_n "checking for Makefile.in in c/src/lib/libbsp/$bspcpudir$bspdir""... $ac_c" 1>&6 3023 echo "configure:30 24: checking for Makefile.in in c/src/lib/libbsp/$bspcpudir$bspdir" >&53079 echo "configure:3080: checking for Makefile.in in c/src/lib/libbsp/$bspcpudir$bspdir" >&5 3024 3080 if test -d $srcdir/c/src/lib/libbsp/$bspcpudir$bspdir; then 3025 3081 rtems_av_save_dir=`pwd`; … … 3036 3092 3037 3093 echo $ac_n "checking for Makefile.in in c/src/lib/libbsp/${bspcpudir}shared""... $ac_c" 1>&6 3038 echo "configure:30 39: checking for Makefile.in in c/src/lib/libbsp/${bspcpudir}shared" >&53094 echo "configure:3095: checking for Makefile.in in c/src/lib/libbsp/${bspcpudir}shared" >&5 3039 3095 if test -d $srcdir/c/src/lib/libbsp/${bspcpudir}shared; then 3040 3096 rtems_av_save_dir=`pwd`; … … 3059 3115 3060 3116 echo $ac_n "checking for Makefile.in in c/src/lib/libcpu/$target_cpu""... $ac_c" 1>&6 3061 echo "configure:3 062: checking for Makefile.in in c/src/lib/libcpu/$target_cpu" >&53117 echo "configure:3118: checking for Makefile.in in c/src/lib/libcpu/$target_cpu" >&5 3062 3118 if test -d $srcdir/c/src/lib/libcpu/$target_cpu; then 3063 3119 rtems_av_save_dir=`pwd`; … … 3076 3132 3077 3133 echo $ac_n "checking for Makefile.in in c/src/lib/start/$target_cpu""... $ac_c" 1>&6 3078 echo "configure:3 079: checking for Makefile.in in c/src/lib/start/$target_cpu" >&53134 echo "configure:3135: checking for Makefile.in in c/src/lib/start/$target_cpu" >&5 3079 3135 if test -d $srcdir/c/src/lib/start/$target_cpu; then 3080 3136 rtems_av_save_dir=`pwd`; … … 3108 3164 # If the TCP/IP stack is enabled, then find all TCP/IP Makefiles 3109 3165 echo $ac_n "checking if networking is enabled? ""... $ac_c" 1>&6 3110 echo "configure:31 11: checking if networking is enabled? " >&53166 echo "configure:3167: checking if networking is enabled? " >&5 3111 3167 echo "$ac_t""$RTEMS_HAS_NETWORKING" 1>&6 3112 3168 if test "$RTEMS_HAS_NETWORKING" = "yes"; then 3113 3169 3114 3170 echo $ac_n "checking for Makefile.in in c/src/lib/libnetworking""... $ac_c" 1>&6 3115 echo "configure:31 16: checking for Makefile.in in c/src/lib/libnetworking" >&53171 echo "configure:3172: checking for Makefile.in in c/src/lib/libnetworking" >&5 3116 3172 if test -d $srcdir/c/src/lib/libnetworking; then 3117 3173 rtems_av_save_dir=`pwd`; … … 3135 3191 # If the tests are enabled, then find all the test suite Makefiles 3136 3192 echo $ac_n "checking if the test suites are enabled? ""... $ac_c" 1>&6 3137 echo "configure:31 38: checking if the test suites are enabled? " >&53193 echo "configure:3194: checking if the test suites are enabled? " >&5 3138 3194 tests_enabled=yes 3139 3195 # Check whether --enable-tests or --disable-tests was given. … … 3154 3210 3155 3211 echo $ac_n "checking for Makefile.in in c/src/tests/tools/$target_cpu""... $ac_c" 1>&6 3156 echo "configure:3 157: checking for Makefile.in in c/src/tests/tools/$target_cpu" >&53212 echo "configure:3213: checking for Makefile.in in c/src/tests/tools/$target_cpu" >&5 3157 3213 if test -d $srcdir/c/src/tests/tools/$target_cpu; then 3158 3214 rtems_av_save_dir=`pwd`; … … 3171 3227 3172 3228 echo $ac_n "checking for Makefile.in in c/src/tests/libtests""... $ac_c" 1>&6 3173 echo "configure:3 174: checking for Makefile.in in c/src/tests/libtests" >&53229 echo "configure:3230: checking for Makefile.in in c/src/tests/libtests" >&5 3174 3230 if test -d $srcdir/c/src/tests/libtests; then 3175 3231 rtems_av_save_dir=`pwd`; … … 3186 3242 3187 3243 echo $ac_n "checking for Makefile.in in c/src/tests/sptests""... $ac_c" 1>&6 3188 echo "configure:3 189: checking for Makefile.in in c/src/tests/sptests" >&53244 echo "configure:3245: checking for Makefile.in in c/src/tests/sptests" >&5 3189 3245 if test -d $srcdir/c/src/tests/sptests; then 3190 3246 rtems_av_save_dir=`pwd`; … … 3201 3257 3202 3258 echo $ac_n "checking for Makefile.in in c/src/tests/tmtests""... $ac_c" 1>&6 3203 echo "configure:32 04: checking for Makefile.in in c/src/tests/tmtests" >&53259 echo "configure:3260: checking for Makefile.in in c/src/tests/tmtests" >&5 3204 3260 if test -d $srcdir/c/src/tests/tmtests; then 3205 3261 rtems_av_save_dir=`pwd`; … … 3216 3272 3217 3273 echo $ac_n "checking for Makefile.in in c/src/tests/mptests""... $ac_c" 1>&6 3218 echo "configure:32 19: checking for Makefile.in in c/src/tests/mptests" >&53274 echo "configure:3275: checking for Makefile.in in c/src/tests/mptests" >&5 3219 3275 if test -d $srcdir/c/src/tests/mptests; then 3220 3276 rtems_av_save_dir=`pwd`; … … 3232 3288 3233 3289 echo $ac_n "checking for Makefile.in in c/src/tests/psxtests""... $ac_c" 1>&6 3234 echo "configure:32 35: checking for Makefile.in in c/src/tests/psxtests" >&53290 echo "configure:3291: checking for Makefile.in in c/src/tests/psxtests" >&5 3235 3291 if test -d $srcdir/c/src/tests/psxtests; then 3236 3292 rtems_av_save_dir=`pwd`; … … 3250 3306 # If the HWAPI is enabled, the find the HWAPI Makefiles 3251 3307 echo $ac_n "checking if the HWAPI is enabled? ""... $ac_c" 1>&6 3252 echo "configure:3 253: checking if the HWAPI is enabled? " >&53308 echo "configure:3309: checking if the HWAPI is enabled? " >&5 3253 3309 # Check whether --enable-hwapi or --disable-hwapi was given. 3254 3310 if test "${enable_hwapi+set}" = set; then … … 3261 3317 3262 3318 echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/analog""... $ac_c" 1>&6 3263 echo "configure:3 264: checking for Makefile.in in c/src/lib/libhwapi/analog" >&53319 echo "configure:3320: checking for Makefile.in in c/src/lib/libhwapi/analog" >&5 3264 3320 if test -d $srcdir/c/src/lib/libhwapi/analog; then 3265 3321 rtems_av_save_dir=`pwd`; … … 3276 3332 3277 3333 echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/discrete""... $ac_c" 1>&6 3278 echo "configure:3 279: checking for Makefile.in in c/src/lib/libhwapi/discrete" >&53334 echo "configure:3335: checking for Makefile.in in c/src/lib/libhwapi/discrete" >&5 3279 3335 if test -d $srcdir/c/src/lib/libhwapi/discrete; then 3280 3336 rtems_av_save_dir=`pwd`; … … 3291 3347 3292 3348 echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/drivers""... $ac_c" 1>&6 3293 echo "configure:3 294: checking for Makefile.in in c/src/lib/libhwapi/drivers" >&53349 echo "configure:3350: checking for Makefile.in in c/src/lib/libhwapi/drivers" >&5 3294 3350 if test -d $srcdir/c/src/lib/libhwapi/drivers; then 3295 3351 rtems_av_save_dir=`pwd`; … … 3306 3362 3307 3363 echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/non_volatile_memory""... $ac_c" 1>&6 3308 echo "configure:33 09: checking for Makefile.in in c/src/lib/libhwapi/non_volatile_memory" >&53364 echo "configure:3365: checking for Makefile.in in c/src/lib/libhwapi/non_volatile_memory" >&5 3309 3365 if test -d $srcdir/c/src/lib/libhwapi/non_volatile_memory; then 3310 3366 rtems_av_save_dir=`pwd`; … … 3321 3377 3322 3378 echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/serial""... $ac_c" 1>&6 3323 echo "configure:33 24: checking for Makefile.in in c/src/lib/libhwapi/serial" >&53379 echo "configure:3380: checking for Makefile.in in c/src/lib/libhwapi/serial" >&5 3324 3380 if test -d $srcdir/c/src/lib/libhwapi/serial; then 3325 3381 rtems_av_save_dir=`pwd`; … … 3336 3392 3337 3393 echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/support""... $ac_c" 1>&6 3338 echo "configure:33 39: checking for Makefile.in in c/src/lib/libhwapi/support" >&53394 echo "configure:3395: checking for Makefile.in in c/src/lib/libhwapi/support" >&5 3339 3395 if test -d $srcdir/c/src/lib/libhwapi/support; then 3340 3396 rtems_av_save_dir=`pwd`; … … 3351 3407 3352 3408 echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/wrapup""... $ac_c" 1>&6 3353 echo "configure:3 354: checking for Makefile.in in c/src/lib/libhwapi/wrapup" >&53409 echo "configure:3410: checking for Makefile.in in c/src/lib/libhwapi/wrapup" >&5 3354 3410 if test -d $srcdir/c/src/lib/libhwapi/wrapup; then 3355 3411 rtems_av_save_dir=`pwd`; … … 3395 3451 3396 3452 3453 3397 3454 # pick up all the Makefiles in required parts of the tree 3398 3455 3399 3456 echo $ac_n "checking for Makefile.in in c/build-tools""... $ac_c" 1>&6 3400 echo "configure:34 01: checking for Makefile.in in c/build-tools" >&53457 echo "configure:3458: checking for Makefile.in in c/build-tools" >&5 3401 3458 if test -d $srcdir/c/build-tools; then 3402 3459 rtems_av_save_dir=`pwd`; … … 3413 3470 3414 3471 echo $ac_n "checking for Makefile.in in make""... $ac_c" 1>&6 3415 echo "configure:34 16: checking for Makefile.in in make" >&53472 echo "configure:3473: checking for Makefile.in in make" >&5 3416 3473 if test -d $srcdir/make; then 3417 3474 rtems_av_save_dir=`pwd`; … … 3428 3485 3429 3486 echo $ac_n "checking for Makefile.in in c/src/lib/libmisc""... $ac_c" 1>&6 3430 echo "configure:34 31: checking for Makefile.in in c/src/lib/libmisc" >&53487 echo "configure:3488: checking for Makefile.in in c/src/lib/libmisc" >&5 3431 3488 if test -d $srcdir/c/src/lib/libmisc; then 3432 3489 rtems_av_save_dir=`pwd`; … … 3443 3500 3444 3501 echo $ac_n "checking for Makefile.in in c/src/tests/samples""... $ac_c" 1>&6 3445 echo "configure:3 446: checking for Makefile.in in c/src/tests/samples" >&53502 echo "configure:3503: checking for Makefile.in in c/src/tests/samples" >&5 3446 3503 if test -d $srcdir/c/src/tests/samples; then 3447 3504 rtems_av_save_dir=`pwd`; … … 3669 3726 s%@EXEEXT@%$EXEEXT%g 3670 3727 s%@GCCSED@%$GCCSED%g 3728 s%@RTEMS_GAS_CODE16@%$RTEMS_GAS_CODE16%g 3671 3729 s%@rtems_cv_prog_cc_cross@%$rtems_cv_prog_cc_cross%g 3672 3730 s%@RTEMS_BSP_LIST@%$RTEMS_BSP_LIST%g -
configure.in
r2405b767 r2c3840b 227 227 228 228 RTEMS_CANONICALIZE_TOOLS 229 230 dnl if this is an i386, does gas have good code16 support? 231 RTEMS_I386_GAS_CODE16 229 232 230 233 dnl check host cc … … 440 443 ) 441 444 445 AC_SUBST(RTEMS_GAS_CODE16) 442 446 AC_SUBST(rtems_cv_prog_cc_cross) 443 447 AC_SUBST(RTEMS_BSP_LIST)
Note: See TracChangeset
for help on using the changeset viewer.