1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025
|
# libstdc++ "tool init file" for DejaGNU
# Copyright (C) 2001-2015 Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; see the file COPYING3. If not see
# <http://www.gnu.org/licenses/>.
# Define callbacks and load other libraries. This file is loaded relatively
# early, and before any other file we write ourselves. "load_lib" will
# find anything in the DejaGNU installation tree, or in our lib directory.
# "load_gcc_lib" will search the core compiler's .exp collection instead.
#
# The naming rule is that dg.exp looks for "tool-" and runtest.exp looks
# for "tool_" when finding callbacks. Utility routines we define for
# our callbacks begin with "v3-".
#
# libstdc++_* callbacks we don't define, but could:
# ..._option_help prints additional --help output
# ..._option_proc (--foo) process our own options
# ..._init (normal.exp) called once per test file
# ..._finish bracketing function for libstdc++_init
# ...-dg-prune removing output text, see top of system dg.exp
#
# Useful hook: if ${hostname}_init exists, it will be called, almost
# the last thing before testing begins. This can be defined in, e.g.,
# ~/.dejagnurc or $DEJAGNU.
proc load_gcc_lib { filename } {
global srcdir loaded_libs
load_file $srcdir/../../gcc/testsuite/lib/$filename
set loaded_libs($filename) ""
}
# system routines
load_lib dg.exp
load_lib libgloss.exp
# compiler routines, then ours
load_gcc_lib target-supports.exp
load_gcc_lib target-supports-dg.exp
load_lib prune.exp
load_lib dg-options.exp
load_gcc_lib scanasm.exp
load_gcc_lib target-libpath.exp
load_gcc_lib timeout.exp
load_gcc_lib timeout-dg.exp
load_gcc_lib wrapper.exp
load_gcc_lib target-utils.exp
# Useful for debugging. Pass the name of a variable and the verbosity
# threshold (number of -v's on the command line).
proc v3track { var n } {
upvar $var val
verbose "++ $var is $val" $n
}
# Copy file to the target.
proc v3-copy-file {src dst} {
if { [catch { set symlink [file readlink $src] } x] } then {
remote_download target $src $dst
} else {
if { [regexp "^/" "$symlink"] } then {
remote_download target $symlink $dst
} else {
set dirname [file dirname $f]
remote_download target $dirname/$symlink $dst
}
}
}
# Called by v3-init below. "Static" to this file.
proc v3-copy-files {srcfiles} {
foreach f $srcfiles {
v3-copy-file $f [file tail $f]
}
}
# Called once, during runtest.exp setup.
proc libstdc++_init { testfile } {
global env
global v3-sharedlib v3-libgomp
global srcdir blddir objdir tool_root_dir
global cc cxx cxxflags cxxpchflags cxxldflags cxxvtvflags
global includes
global gluefile wrap_flags
global ld_library_path
global target_triplet
global flags_file
global tool_timeout
global DEFAULT_CXXFLAGS
global STATIC_LIBCXXFLAGS
# We set LC_ALL and LANG to C so that we get the same error
# messages as expected.
setenv LC_ALL C
setenv LANG C
# LANGUAGE changes the behavior of GNU gettext(3) and causes
# std::messages tests to fail.
array unset env LANGUAGE
# Many hosts now default to a non-ASCII C locale, however, so
# they can set a charset encoding here if they need.
if { [ishost "*-*-cygwin*"] } {
setenv LC_ALL C.ASCII
setenv LANG C.ASCII
}
set blddir [lookfor_file [get_multilibs] libstdc++-v3]
set flags_file "${blddir}/scripts/testsuite_flags"
set shlib_ext [get_shlib_extension]
v3track flags_file 2
# If a test doesn't have special options, use DEFAULT_CXXFLAGS.
# Use this variable if the behavior
# 1) only applies to libstdc++ testing
# 2) might need to be negated
# In particular, some tests have to be run without precompiled
# headers, or without assertions.
if ![info exists DEFAULT_CXXFLAGS] then {
set DEFAULT_CXXFLAGS ""
# Host specific goo here.
if { [string match "powerpc-*-darwin*" $target_triplet] } {
append DEFAULT_CXXFLAGS " -multiply_defined suppress"
}
}
v3track DEFAULT_CXXFLAGS 2
# By default, we assume we want to run program images.
global dg-do-what-default
set dg-do-what-default run
# Copy any required data files.
v3-copy-files [glob -nocomplain "$srcdir/data/*.tst"]
v3-copy-files [glob -nocomplain "$srcdir/data/*.txt"]
set ld_library_path_tmp ""
# Locate libgcc.a so we don't need to account for different values of
# SHLIB_EXT on different platforms
set gccdir [lookfor_file $tool_root_dir gcc/libgcc.a]
if {$gccdir != ""} {
set gccdir [file dirname $gccdir]
append ld_library_path_tmp ":${gccdir}"
}
v3track gccdir 3
# Locate libgomp. This is only required for parallel mode.
set v3-libgomp 0
set libgompdir [lookfor_file $blddir/../libgomp .libs/libgomp.$shlib_ext]
if {$libgompdir != ""} {
set v3-libgomp 1
set libgompdir [file dirname $libgompdir]
append ld_library_path_tmp ":${libgompdir}"
verbose -log "libgomp support detected"
}
v3track libgompdir 3
# Locate libvtv. This is only required for --enable-vtable-verify.
set v3-libvtv 0
set libvtvdir [lookfor_file $blddir/../libvtv .libs/libvtv.$shlib_ext]
if {$libvtvdir != ""} {
set v3-libvtv 1
set libvtvdir [file dirname $libvtvdir]
append ld_library_path_tmp ":${libvtvdir}"
verbose -log "libvtv support detected"
}
v3track libvtvdir 3
# Locate libstdc++ shared library. (ie libstdc++.so.)
set v3-sharedlib 0
set sharedlibdir [lookfor_file $blddir src/.libs/libstdc++.$shlib_ext]
if {$sharedlibdir != ""} {
if { ([string match "*-*-linux*" $target_triplet]
|| [string match "*-*-gnu*" $target_triplet])
&& [isnative] } then {
set v3-sharedlib 1
verbose -log "shared library support detected"
}
}
v3track v3-sharedlib 3
set STATIC_LIBCXXFLAGS ""
set staticlibdir [lookfor_file $blddir src/.libs/libstdc++.a]
if {$staticlibdir != ""} {
set staticlibdir [file dirname $staticlibdir]
# Some targets use libstdc++.a%s in their specs, so they need a
# -B option for uninstalled testing.
set STATIC_LIBCXXFLAGS " -B${staticlibdir} "
}
# Compute what needs to be added to the existing LD_LIBRARY_PATH.
if {$gccdir != ""} {
set compiler ${gccdir}/xg++
set ld_library_path ${ld_library_path_tmp}
append ld_library_path ":${blddir}/src/.libs"
if { [is_remote host] == 0 && [which $compiler] != 0 } {
foreach i "[exec $compiler --print-multi-lib]" {
set mldir ""
regexp -- "\[a-z0-9=_/\.-\]*;" $i mldir
set mldir [string trimright $mldir "\;@"]
if { "$mldir" == "." } {
continue
}
if { [llength [glob -nocomplain ${gccdir}/${mldir}/libgcc_s*.so.*]] >= 1 } {
append ld_library_path ":${gccdir}/${mldir}"
}
}
}
set_ld_library_path_env_vars
if [info exists env(LD_LIBRARY_PATH)] {
verbose -log "LD_LIBRARY_PATH = $env(LD_LIBRARY_PATH)"
}
} else {
set compiler [transform "g++"]
}
# Set the default timeout for v3 tests.
set tool_timeout 600
# Default settings.
set cxx [transform "g++"]
set cxxflags "-D_GLIBCXX_ASSERT -fmessage-length=0"
set cxxpchflags ""
set cxxvtvflags ""
set cxxldflags ""
set cc [transform "gcc"]
# Locate testsuite_hooks.h and other testsuite headers.
set includes "-I${srcdir}/util"
# Adapt the defaults for special circumstances.
if [is_remote host] {
# A remote host does not, in general, have access to the
# $srcdir so we copy the testsuite headers into the current
# directory, and then add that to the search path.
foreach src [glob "${srcdir}/util/*.h" \
"${srcdir}/util/*.cc" \
"${srcdir}/util/*.tcc" \
"${srcdir}/util/*.hpp" \
"${srcdir}/util/*/*.h" \
"${srcdir}/util/*/*.cc" \
"${srcdir}/util/*/*.tcc" \
"${srcdir}/util/*/*.hpp" \
"${srcdir}/util/*/*/*.h" \
"${srcdir}/util/*/*/*.cc" \
"${srcdir}/util/*/*/*.tcc" \
"${srcdir}/util/*/*/*.hpp" \
"${srcdir}/util/*/*/*/*.h" \
"${srcdir}/util/*/*/*/*.cc" \
"${srcdir}/util/*/*/*/*.tcc" \
"${srcdir}/util/*/*/*/*.hpp" \
"${srcdir}/util/*/*/*/*/*.h" \
"${srcdir}/util/*/*/*/*/*.cc" \
"${srcdir}/util/*/*/*/*/*.tcc" \
"${srcdir}/util/*/*/*/*/*.hpp" ] {
# Remove everything up to "util/..."
set dst [string range $src [string length "${srcdir}/"] end]
# Create the directory containing the file.
set dir [file dirname $dst]
remote_exec host "mkdir" [list "-p" "$dir"]
# Download the file.
set result [remote_download host $src $dst]
if { $result == "" } {
verbose -log "Unable to download ${srcdir}/${src} to host."
return "untested"
}
}
set includes "-Iutil"
} elseif { [file exists $flags_file] } {
# If we find a testsuite_flags file, we're testing in the build dir.
set cxx [exec sh $flags_file --build-cxx]
set cxxflags [exec sh $flags_file --cxxflags]
set cxxpchflags [exec sh $flags_file --cxxpchflags]
set cxxvtvflags [exec sh $flags_file --cxxvtvflags]
set cxxldflags [exec sh $flags_file --cxxldflags]
set cc [exec sh $flags_file --build-cc]
set includes [exec sh $flags_file --build-includes]
}
append cxxflags " "
append cxxflags [getenv CXXFLAGS]
if ![regexp ".*-O" $cxxflags] {
append cxxflags " -g -O2"
}
v3track cxxflags 2
# Should be as good as -fdiagnostics-color=never, but more compatible
setenv GCC_COLORS ""
# Always use MO files built by this test harness.
set ccflags "$cxxflags -DLOCALEDIR=\".\""
set cxxflags "$cxxflags -DLOCALEDIR=\".\""
# If a PCH file is available, use it. We must delay performing
# this check until $cxx and such have been initialized because we
# perform a test compilation. (Ideally, gcc --print-file-name would
# list PCH files, but it does not.)
if { $cxxpchflags != "" } {
set src "config[pid].cc"
set f [open $src "w"]
puts $f "int main () {}"
close $f
# Fixme: "additional_flags=$cxxpchflags" fails, but would be
# useful as then the requested variant of the pre-build PCH
# files could be tested to see if it works.
set lines [v3_target_compile $src "config[pid].o" object \
"additional_flags=-include additional_flags=bits/stdc++.h"]
if { $lines != "" } {
verbose -log "Requested PCH file: $cxxpchflags"
verbose -log "is not working, and will not be used."
set cxxpchflags ""
}
file delete $src
}
v3track cxxpchflags 2
global PCH_CXXFLAGS
if ![info exists PCH_CXXFLAGS] then {
set PCH_CXXFLAGS $cxxpchflags
v3track PCH_CXXFLAGS 2
}
libstdc++_maybe_build_wrapper "${objdir}/testglue.o" "-fexceptions"
}
# Callback for cleanup routines.
proc libstdc++_exit { } {
global gluefile;
if [info exists gluefile] {
file_on_build delete $gluefile;
unset gluefile;
}
}
# Callback from system dg-test.
proc libstdc++-dg-test { prog do_what extra_tool_flags } {
# Set up the compiler flags, based on what we're going to do.
switch $do_what {
"preprocess" {
set compile_type "preprocess"
set output_file "[file rootname [file tail $prog]].i"
}
"compile" {
set compile_type "assembly"
set output_file "[file rootname [file tail $prog]].s"
}
"assemble" {
set compile_type "object"
set output_file "[file rootname [file tail $prog]].o"
}
"link" {
set compile_type "executable"
set output_file "./[file rootname [file tail $prog]].exe"
}
"run" {
set compile_type "executable"
# FIXME: "./" is to cope with "." not being in $PATH.
# Should this be handled elsewhere?
# YES.
set output_file "./[file rootname [file tail $prog]].exe"
# This is the only place where we care if an executable was
# created or not. If it was, dg.exp will try to run it.
catch { remote_file build delete $output_file }
}
default {
perror "$do_what: not a valid dg-do keyword"
return ""
}
}
# Short-circut a bunch of complicated goo here for the special
# case of compiling a test file as a "C" file, not as C++. Why? So
# -nostdc++ doesn't trip us up. So all the extra object files
# don't trip us up. So automatically linking in libstdc++ doesn't
# happen. So CXXFLAGS don't error.
set select_compile "v3_target_compile"
set options ""
if { $extra_tool_flags != "" } {
verbose -log "extra_tool_flags are:"
verbose -log $extra_tool_flags
if { [string first "-x c" $extra_tool_flags ] != -1 } {
verbose -log "compiling and executing as C, not C++"
set edit_tool_flags $extra_tool_flags
regsub -all ".x c" $edit_tool_flags "" edit_tool_flags
lappend options "additional_flags=$edit_tool_flags"
set select_compile "v3_target_compile_as_c"
} else {
lappend options "additional_flags=$extra_tool_flags"
}
}
# There is a libstdc++_compile made for us by default (via the tool-
# and-target file), but the defaults are lacking in goodness.
set comp_output [$select_compile "$prog" "$output_file" "$compile_type" $options];
return [list $comp_output $output_file]
}
# Override the DejaGnu dg-test in order to clear flags after a test, as
# is done for compiler tests in gcc-dg.exp.
if { [info procs saved-dg-test] == [list] } {
rename dg-test saved-dg-test
proc dg-test { args } {
global additional_prunes
global errorInfo
global testname_with_flags
if { [ catch { eval saved-dg-test $args } errmsg ] } {
set saved_info $errorInfo
set additional_prunes ""
if [info exists testname_with_flags] {
unset testname_with_flags
}
unset_timeout_vars
error $errmsg $saved_info
}
set additional_prunes ""
unset_timeout_vars
if [info exists testname_with_flags] {
unset testname_with_flags
}
}
}
# True if the library supports wchar_t.
set v3-wchar_t 0
# True if the library supports threads.
set v3-threads 0
# True if the library supports symbol versioning.
set v3-symver 0
# Called from libstdc++-dg-test above. Calls back into system's
# target_compile to actually do the work.
proc v3_target_compile { source dest type options } {
global gluefile
global wrap_flags
global cxx
global cxxflags
global cxxvtvflags
global cxxldflags
global includes
global STATIC_LIBCXXFLAGS
global tool
if { [target_info needs_status_wrapper] != "" && [info exists gluefile] } {
lappend options "libs=${gluefile}"
lappend options "ldflags=${wrap_flags}"
}
set cxx_final $cxx
set cxxlibglossflags [libgloss_link_flags]
set cxx_final [concat $cxx_final $cxxlibglossflags]
set cxx_final [concat $cxx_final $STATIC_LIBCXXFLAGS]
set cxx_final [concat $cxx_final $cxxflags]
set cxx_final [concat $cxx_final $cxxvtvflags]
set cxx_final [concat $cxx_final $includes]
# Flag setting based on type argument.
if { $type == "executable" } {
# Link the support objects into executables.
lappend options "additional_flags=./libtestc++.a $cxxldflags"
} else {
if { $type == "sharedlib" } {
# Don't link in anything.
set type "executable"
}
}
lappend options "compiler=$cxx_final"
lappend options "timeout=[timeout_value]"
set comp_output [target_compile $source $dest $type $options]
return $comp_output
}
# Called from libstdc++-dg-test above, but only for "C" compilation.
# Calls back into system's target_compile to actually do the work.
proc v3_target_compile_as_c { source dest type options } {
global gluefile
global wrap_flags
global includes
global flags_file
global blddir
global cc
global cxxflags
global STATIC_LIBCXXFLAGS
global tool
if { [target_info needs_status_wrapper] != "" && [info exists gluefile] } {
lappend options "libs=${gluefile}"
lappend options "ldflags=${wrap_flags}"
}
set tname [target_info name]
set cc_final $cc
set cxxlibglossflags [libgloss_link_flags]
set cc_final [concat $cc_final $cxxlibglossflags]
set cc_final [concat $cc_final $STATIC_LIBCXXFLAGS]
set cc_final [concat $cc_final $cxxflags]
set cc_final [concat $cc_final $includes]
regsub -all {\s[-]nostdinc[+][+]} $cc_final "" cc_final
# This is needed for "C" tests, as this type of test may need the
# C++ includes. And if we're not testing in the build directory,
# the includes variable is not likely to include the necessary
# info.
if { ![file exists $flags_file] } {
# ??? We need a --print-include-dirs option to GCC, so that
# we can avoid these hacks. The heuristics here will not
# work with non-standard --with-includedir= options.
set version [remote_exec host ${cc} -dumpversion]
# Remove the trailing newline from the output.
set version [string trimright [lindex $version 1]]
set machine [remote_exec host ${cc} -dumpmachine]
set machine [string trimright [lindex $machine 1]]
set comp_base_dir [remote_exec host ${cc} --print-prog-name=cc1]
set comp_base_dir [lindex $comp_base_dir 1]
set comp_base_dir [file dirname [file dirname [file dirname [file dirname [file dirname $comp_base_dir]]]]]
# For a cross compiler, the header files will be located in a
# machine-specific subdirectory.
set crossbase "${comp_base_dir}/${machine}/include/c++/${version}"
set crosstarget "${crossbase}/${machine}"
set cc_final [concat $cc_final "-I$crossbase -I$crosstarget"]
# For a native compiler, the header files will be located at
# the top level.
set includesbase "${comp_base_dir}/include/c++/${version}"
set includestarget "${includesbase}/${machine}"
set cc_final [concat $cc_final "-I$includesbase -I$includestarget"]
set libdir "-L${comp_base_dir}/lib"
} else {
set libdir "-L${blddir}/libsupc++/.libs"
set libdir [concat $libdir "-L${blddir}/src/.libs"]
}
set cc_final [concat $cc_final "$libdir"]
lappend options "compiler=$cc_final"
lappend options "timeout=[timeout_value]"
set comp_output [target_compile $source $dest $type $options]
return $comp_output
}
# Build the support objects linked in with the libstdc++ tests. In
# addition, set v3-wchar_t, v3-threads, and v3-symver appropriately.
proc v3-build_support { } {
global env
global srcdir
global v3-wchar_t
global v3-threads
global v3-symver
global v3-sharedlib
# Figure out whether or not the library supports certain features.
set v3-wchar_t 0
set v3-threads 0
set v3-symver 0
set libtest_objs ""
set config_src "config.cc"
set config_out "config.ii"
set f [open $config_src "w"]
puts $f "#include <bits/c++config.h>"
puts $f "#include <bits/gthr.h>"
close $f
v3_target_compile $config_src $config_out preprocess "additional_flags=-dN"
set file [open $config_out r]
set preprocessed [read $file]
close $file
if { [string first "_GLIBCXX_USE_WCHAR_T" $preprocessed] != -1 } {
verbose -log "wchar_t support detected"
set v3-wchar_t 1
}
if { [string first "_GLIBCXX_SYMVER" $preprocessed] != -1 } {
verbose -log "symbol versioning support detected"
set v3-symver 1
}
if { [string first "__GTHREADS" $preprocessed] != -1 } {
verbose -log "thread support detected"
set v3-threads 1
}
# Try to build the MO files that are used by some of the locale
# tests. If we can't build them, that's OK; it just means that
# those tests will fail.
foreach lang [list "fr" "de"] {
catch {
file mkdir "$lang/LC_MESSAGES"
remote_exec "build" "msgfmt" "-o $lang/LC_MESSAGES/libstdc++.mo $srcdir/../po/$lang.po"
if [is_remote host] {
remote_exec "host" "mkdir" "-p $lang/LC_MESSAGES"
remote_download "host" "$lang/LC_MESSAGES/libstdc++.mo" "$lang/LC_MESSAGES/libstdc++.mo"
}
}
}
# Build the support objects.
set source_files [list testsuite_abi.cc testsuite_allocator.cc \
testsuite_character.cc testsuite_hooks.cc \
io/verified_cmd_line_input.cc \
io/prog_bar.cc performance/time/elapsed_timer.cc ]
foreach f $source_files {
set obj [file rootname $f].o
set object_file [file tail $obj]
# Compile with "-w" so that warnings issued by the compiler
# do not prevent compilation.
if { [v3_target_compile $srcdir/util/$f $object_file "object" \
[list "incdir=$srcdir" "additional_flags=-w"]]
!= "" } {
error "could not compile $f"
}
append libtest_objs "$object_file "
}
# Collect into libtestc++.a
if [info exists env(AR)] {
set ar $env(AR)
} else {
set ar [transform "ar"]
}
set arargs "-rc ./libtestc++.a ${libtest_objs}"
verbose -log "$ar $arargs"
set result [lindex [remote_exec host "$ar" "$arargs"] 0]
verbose "link result is $result"
if { $result == 0 } {
if [info exists env(RANLIB)] {
set ranlib $env(RANLIB)
} else {
set ranlib [transform "ranlib"]
}
set ranlibargs "./libtestc++.a"
verbose -log "$ranlib $ranlibargs"
set result [lindex [remote_exec host "$ranlib" "$ranlibargs"] 0]
if { $result != 0 } {
error "could not link libtestc++.a"
}
}
# Build any shared objects needed for regression testing.
if { ${v3-sharedlib} == 1 } {
set source_files [list testsuite_shared.cc]
foreach f $source_files {
set object_file [file rootname $f].so
# Compile with "-w" so that warnings issued by the compiler
# do not prevent compilation.
if { [v3_target_compile $srcdir/util/$f $object_file "sharedlib" \
[list "incdir=$srcdir" "additional_flags=-fno-inline -w -shared -fPIC -DPIC"]]
!= "" } {
error "could not compile $f"
}
}
}
}
proc check_v3_target_fileio { } {
global et_fileio_saved
global et_fileio_target_name
global tool
global srcdir
if { ![info exists et_fileio_target_name] } {
set et_fileio_target_name ""
}
# If the target has changed since we set the cached value, clear it.
set current_target [current_target_name]
if { $current_target != $et_fileio_target_name } {
verbose "check_v3_target_fileio: `$et_fileio_target_name'" 2
set et_fileio_target_name $current_target
if [info exists et_fileio_saved] {
verbose "check_v3_target_fileio: removing cached result" 2
unset et_fileio_saved
}
}
if [info exists et_fileio_saved] {
verbose "check_v3_target_fileio: using cached result" 2
} else {
set et_fileio_saved 0
# Set up, compile, and execute a C++ test program that tries to use
# the file functions
set src fileio[pid].cc
set exe fileio[pid].x
set testfile "cin_unget-1.[pid].txt"
v3-copy-file "$srcdir/data/cin_unget-1.txt" "$testfile"
set f [open $src "w"]
puts $f "#include <sys/types.h>"
puts $f "#include <sys/stat.h>"
puts $f "#include <fcntl.h>"
puts $f "#include <unistd.h>"
puts $f "#include <errno.h>"
puts $f "#include <string.h>"
puts $f "using namespace std;"
puts $f "int main ()"
puts $f "{"
puts $f " int fd = open (\"$testfile\", O_RDONLY);"
puts $f " int ret = 0;"
puts $f " char buf\[10\];"
puts $f " if (fd == -1)"
puts $f " ret = 1;"
puts $f " else"
puts $f " {"
puts $f " if (lseek (fd, -1, SEEK_CUR) != -1 || errno != EINVAL)"
puts $f " ret = 1;"
puts $f " errno = 0;"
puts $f " if (lseek (fd, 0, SEEK_CUR) != 0"
puts $f " || read (fd, buf, 4) != 4"
puts $f " || memcmp (buf, \"1234\", 4) != 0"
puts $f " || lseek (fd, -2, SEEK_CUR) != 2"
puts $f " || read (fd, buf, 2) != 2"
puts $f " || memcmp (buf, \"34\", 2) != 0)"
puts $f " ret = 1;"
puts $f " close (fd);"
puts $f " }"
puts $f " return ret;"
puts $f "}"
close $f
set lines [v3_target_compile $src $exe executable ""]
file delete $src
if [string match "" $lines] {
# No error message, compilation succeeded.
set result [${tool}_load "./$exe" "" ""]
set status [lindex $result 0]
remote_file build delete $exe
verbose "check_v3_target_fileio: status is <$status>" 2
if { $status == "pass" } {
set et_fileio_saved 1
}
} else {
verbose "check_v3_target_fileio: compilation failed" 2
}
}
return $et_fileio_saved
}
# Eventually we want C90/C99 determining and switching from this.
proc check_v3_target_c_std { } {
global et_c_std_saved
global et_c_std_target_name
global tool
if { ![info exists et_c_std_target_name] } {
set et_c_std_target_name ""
}
# If the target has changed since we set the cached value, clear it.
set current_target [current_target_name]
if { $current_target != $et_c_std_target_name } {
verbose "check_v3_target_c_std: `$et_c_std_target_name'" 2
set et_c_std_target_name $current_target
if [info exists et_c_std_saved] {
verbose "check_v3_target_c_std: removing cached result" 2
unset et_c_std_saved
}
}
if [info exists et_c_std_saved] {
verbose "check_v3_target_c_std: using cached result" 2
} else {
set et_c_std_saved 0
# Set up, compile, and execute a C++ test program that tries to use
# C99 functionality.
# For math bits, could use check_effective_target_c99_math.
set src fileio[pid].cc
set exe fileio[pid].x
set f [open $src "w"]
puts $f "#include <tr1/cmath>"
puts $f "#include <cstdlib>"
puts $f "int main ()"
puts $f "{"
puts $f " float f = 45.55;"
puts $f " int i = std::tr1::isnan(f);"
puts $f " "
puts $f " using std::wctomb;"
puts $f " return i;"
puts $f "}"
close $f
set lines [v3_target_compile $src $exe executable ""]
file delete $src
if [string match "" $lines] {
# No error message, compilation succeeded.
set result [${tool}_load "./$exe" "" ""]
set status [lindex $result 0]
remote_file build delete $exe
verbose "check_v3_target_c_std: status is <$status>" 2
if { $status == "pass" } {
set et_c_std_saved 1
}
} else {
verbose "check_v3_target_c_std: compilation failed" 2
}
}
return $et_c_std_saved
}
proc check_v3_target_sharedlib { } {
global v3-sharedlib
return ${v3-sharedlib}
}
proc check_v3_target_time { } {
global et_time_saved
global et_time_target_name
global tool
if { ![info exists et_time_target_name] } {
set et_time_target_name ""
}
# If the target has changed since we set the cached value, clear it.
set current_target [current_target_name]
if { $current_target != $et_time_target_name } {
verbose "check_v3_target_time: `$et_time_target_name'" 2
set et_time_target_name $current_target
if [info exists et_time_saved] {
verbose "check_v3_target_time: removing cached result" 2
unset et_time_saved
}
}
if [info exists et_time_saved] {
verbose "check_v3_target_time: using cached result" 2
} else {
set et_time_saved 0
# Set up and compile a C++ test program that tries to use
# the time function
set src time[pid].cc
set f [open $src "w"]
puts $f "#include <time.h>"
puts $f "using namespace std;"
puts $f "int main ()"
puts $f "{"
puts $f " time (0);"
puts $f "}"
close $f
set lines [v3_target_compile $src /dev/null executable ""]
file delete $src
if [string match "" $lines] {
# No error message, compilation succeeded.
verbose "check_v3_target_time: compilation succeeded" 2
set et_time_saved 1
} else {
verbose "check_v3_target_time: compilation failed" 2
}
}
return $et_time_saved
}
proc check_v3_target_namedlocale { args } {
global et_namedlocale
global tool
set et_namedlocale 0
# Set up, compile, and execute a C++ test program that tries to use
# the required named locale.
set exe nlocale[pid].x
if ![file exists ./$exe] {
set src nlocale[pid].cc
set f [open $src "w"]
puts $f "#include <locale>"
puts $f "#include <cstdio>"
puts $f "using namespace std;"
puts $f "int main (int argc, char** argv)"
puts $f "{"
puts $f " try"
puts $f " {"
puts $f " locale(*(argv + 1));"
puts $f " return 0;"
puts $f " }"
puts $f " catch(...)"
puts $f " {"
puts $f " printf(\"locale '%s' not supported\\n\", *(argv + 1));"
puts $f " return 1;"
puts $f " }"
puts $f "}"
close $f
set lines [v3_target_compile $src $exe executable ""]
file delete $src
if ![string match "" $lines] {
verbose "check_v3_target_namedlocale: compilation failed" 2
return $et_namedlocale
}
# else No error message, compilation succeeded.
}
set result [${tool}_load "./$exe" "$args" ""]
set status [lindex $result 0]
verbose "check_v3_target_namedlocale <$args>: status is <$status>" 2
if { $status == "pass" } {
set et_namedlocale 1
}
return $et_namedlocale
}
proc check_v3_target_debug_mode { } {
global et_debug_mode
global tool
if { ![info exists et_debug_mode_target_name] } {
set et_debug_mode_target_name ""
}
# If the target has changed since we set the cached value, clear it.
set current_target [current_target_name]
if { $current_target != $et_debug_mode_target_name } {
verbose "check_v3_target_debug_mode: `$et_debug_mode_target_name'" 2
set et_debug_mode_target_name $current_target
if [info exists et_debug_mode] {
verbose "check_v3_target_debug_mode: removing cached result" 2
unset et_debug_mode
}
}
if [info exists et_debug_mode] {
verbose "check_v3_target_debug_mode: using cached result" 2
} else {
set et_debug_mode 0
# Set up and preprocess a C++ test program that depends
# on debug mode activated.
set src debug_mode[pid].cc
set f [open $src "w"]
puts $f "#ifndef _GLIBCXX_DEBUG"
puts $f "# error No debug mode"
puts $f "#endif"
close $f
set lines [v3_target_compile $src /dev/null preprocess ""]
file delete $src
if [string match "" $lines] {
# No error message, preprocessing succeeded.
set et_debug_mode 1
}
}
verbose "check_v3_target_debug_mode: $et_debug_mode" 2
return $et_debug_mode
}
proc check_v3_target_profile_mode { } {
global et_profile_mode
global tool
if { ![info exists et_profile_mode_target_name] } {
set et_profile_mode_target_name ""
}
# If the target has changed since we set the cached value, clear it.
set current_target [current_target_name]
if { $current_target != $et_profile_mode_target_name } {
verbose "check_v3_target_profile_mode: `$et_profile_mode_target_name'" 2
set et_profile_mode_target_name $current_target
if [info exists et_profile_mode] {
verbose "check_v3_target_profile_mode: removing cached result" 2
unset et_profile_mode
}
}
if [info exists et_profile_mode] {
verbose "check_v3_target_profile_mode: using cached result" 2
} else {
set et_profile_mode 0
# Set up and preprocess a C++ test program that depends
# on profile mode activated.
set src profile_mode[pid].cc
set f [open $src "w"]
puts $f "#ifndef _GLIBCXX_PROFILE"
puts $f "# error No profile mode"
puts $f "#endif"
close $f
set lines [v3_target_compile $src /dev/null preprocess ""]
file delete $src
if [string match "" $lines] {
# No error message, preprocessing succeeded.
set et_profile_mode 1
}
}
verbose "check_v3_target_profile_mode: $et_profile_mode" 2
return $et_profile_mode
}
proc check_v3_target_normal_mode { } {
global et_normal_mode
global tool
if { ![info exists et_normal_mode_target_name] } {
set et_normal_mode_target_name ""
}
# If the target has changed since we set the cached value, clear it.
set current_target [current_target_name]
if { $current_target != $et_normal_mode_target_name } {
verbose "check_v3_target_normal_mode: `$et_normal_mode_target_name'" 2
set et_normal_mode_target_name $current_target
if [info exists et_normal_mode] {
verbose "check_v3_target_normal_mode: removing cached result" 2
unset et_normal_mode
}
}
if [info exists et_normal_mode] {
verbose "check_v3_target_normal_mode: using cached result" 2
} else {
set et_normal_mode 0
# Set up and compile a C++ test program that depends
# on normal mode activated.
set src normal_mode[pid].cc
set f [open $src "w"]
puts $f "#if defined(_GLIBCXX_DEBUG) || defined(_GLIBCXX_PROFILE) || defined(_GLIBCXX_PARALLEL)"
puts $f "# error No normal mode"
puts $f "#endif"
close $f
set lines [v3_target_compile $src /dev/null preprocess ""]
file delete $src
if [string match "" $lines] {
# No error message, compilation succeeded.
set et_normal_mode 1
}
}
verbose "check_v3_target_normal_mode: $et_normal_mode" 2
return $et_normal_mode
}
proc check_v3_target_parallel_mode { } {
global cxxflags
global v3-libgomp
global et_parallel_mode
global tool
if { ![info exists et_parallel_mode_target_name] } {
set et_parallel_mode_target_name ""
}
# If the target has changed since we set the cached value, clear it.
set current_target [current_target_name]
if { $current_target != $et_parallel_mode_target_name } {
verbose "check_v3_target_parallel_mode: `$et_parallel_mode_target_name'" 2
set et_parallel_mode_target_name $current_target
if [info exists et_parallel_mode] {
verbose "check_v3_target_parallel_mode: removing cached result" 2
unset et_parallel_mode
}
}
if [info exists et_parallel_mode] {
verbose "check_v3_target_parallel_mode: using cached result" 2
} else {
set et_parallel_mode 0
# If 'make check-parallel' is running the test succeeds.
if { ${v3-libgomp} == 1 && [regexp "libgomp" $cxxflags] } {
set et_parallel_mode 1
}
}
verbose "check_v3_target_parallel_mode: $et_parallel_mode" 2
return $et_parallel_mode
}
proc check_v3_target_cstdint { } {
global cxxflags
global DEFAULT_CXXFLAGS
global et_cstdint
global tool
if { ![info exists et_cstdint_target_name] } {
set et_cstdint_target_name ""
}
# If the target has changed since we set the cached value, clear it.
set current_target [current_target_name]
if { $current_target != $et_cstdint_target_name } {
verbose "check_v3_target_cstdint: `$et_cstdint_target_name'" 2
set et_cstdint_target_name $current_target
if [info exists et_cstdint] {
verbose "check_v3_target_cstdint: removing cached result" 2
unset et_cstdint
}
}
if [info exists et_cstdint] {
verbose "check_v3_target_cstdint: using cached result" 2
} else {
set et_cstdint 0
# Set up and preprocess a C++0x test program that depends
# on the C99 stdint facilities to be available.
set src cstdint[pid].cc
set f [open $src "w"]
puts $f "#include <tr1/cstdint>"
puts $f "#ifndef _GLIBCXX_USE_C99_STDINT_TR1"
puts $f "# error No C99 stdint"
puts $f "#endif"
close $f
set cxxflags_saved $cxxflags
set cxxflags "$cxxflags $DEFAULT_CXXFLAGS -Werror"
set lines [v3_target_compile $src /dev/null preprocess ""]
set cxxflags $cxxflags_saved
file delete $src
if [string match "" $lines] {
# No error message, preprocess succeeded.
set et_cstdint 1
} else {
verbose "check_v3_target_cstdint: compilation failed" 2
}
}
verbose "check_v3_target_cstdint: $et_cstdint" 2
return $et_cstdint
}
proc check_v3_target_cmath { } {
global cxxflags
global DEFAULT_CXXFLAGS
global et_c99_math
global tool
if { ![info exists et_c99_math_target_name] } {
set et_c99_math_target_name ""
}
# If the target has changed since we set the cached value, clear it.
set current_target [current_target_name]
if { $current_target != $et_c99_math_target_name } {
verbose "check_v3_target_c99_math: `$et_c99_math_target_name'" 2
set et_c99_math_target_name $current_target
if [info exists et_c99_math] {
verbose "check_v3_target_c99_math: removing cached result" 2
unset et_c99_math
}
}
if [info exists et_c99_math] {
verbose "check_v3_target_c99_math: using cached result" 2
} else {
set et_c99_math 0
# Set up and preprocess a C++0x test program that depends
# on the C99 math facilities to be available.
set src c99_math[pid].cc
set f [open $src "w"]
puts $f "#include <tr1/cmath>"
puts $f "#ifndef _GLIBCXX_USE_C99_MATH_TR1"
puts $f "# error No C99 math"
puts $f "#endif"
close $f
set cxxflags_saved $cxxflags
set cxxflags "$cxxflags $DEFAULT_CXXFLAGS -Werror"
set lines [v3_target_compile $src /dev/null preprocess ""]
set cxxflags $cxxflags_saved
file delete $src
if [string match "" $lines] {
# No error message, preprocess succeeded.
set et_c99_math 1
} else {
verbose "check_v3_target_c99_math: compilation failed" 2
}
}
verbose "check_v3_target_c99_math: $et_c99_math" 2
return $et_c99_math
}
proc check_v3_target_thread_fence { } {
global cxxflags
global DEFAULT_CXXFLAGS
global et_thread_fence
global tool
if { ![info exists et_thread_fence_target_name] } {
set et_thread_fence_target_name ""
}
# If the target has changed since we set the cached value, clear it.
set current_target [current_target_name]
if { $current_target != $et_thread_fence_target_name } {
verbose "check_v3_target_thread_fence: `$et_thread_fence_target_name'" 2
set et_thread_fence_target_name $current_target
if [info exists et_thread_fence] {
verbose "check_v3_target_thread_fence: removing cached result" 2
unset et_thread_fence
}
}
if [info exists et_thread_fence] {
verbose "check_v3_target_thread_fence: using cached result" 2
} else {
set et_thread_fence 0
# Set up and preprocess a C++11 test program that depends
# on the thread fence to be available.
set src thread_fence[pid].cc
set f [open $src "w"]
puts $f "int main() {"
puts $f "__atomic_thread_fence (__ATOMIC_SEQ_CST);"
puts $f "return 0;"
puts $f "}"
close $f
set cxxflags_saved $cxxflags
set cxxflags "$cxxflags $DEFAULT_CXXFLAGS -Werror -std=gnu++11"
set lines [v3_target_compile $src /dev/null executable ""]
set cxxflags $cxxflags_saved
file delete $src
if [string match "" $lines] {
# No error message, linking succeeded.
set et_thread_fence 1
} else {
verbose "check_v3_target_thread_fence: compilation failed" 2
}
}
verbose "check_v3_target_thread_fence: $et_thread_fence" 2
return $et_thread_fence
}
proc check_v3_target_atomic_builtins { } {
global cxxflags
global DEFAULT_CXXFLAGS
global et_atomic_builtins
global tool
if { ![info exists et_atomic_builtins_target_name] } {
set et_atomic_builtins_target_name ""
}
# If the target has changed since we set the cached value, clear it.
set current_target [current_target_name]
if { $current_target != $et_atomic_builtins_target_name } {
verbose "check_v3_target_atomic_builtins: `$et_atomic_builtins_target_name'" 2
set et_atomic_builtins_target_name $current_target
if [info exists et_atomic_builtins] {
verbose "check_v3_target_atomic_builtins: removing cached result" 2
unset et_atomic_builtins
}
}
if [info exists et_atomic_builtins] {
verbose "check_v3_target_atomic_builtins: using cached result" 2
} else {
set et_atomic_builtins 0
# Set up and preprocess a C++11 test program that depends
# on the atomic builtin facilities to be available.
set src atomic_builtins[pid].cc
set f [open $src "w"]
puts $f "#if __GCC_ATOMIC_BOOL_LOCK_FREE < 2"
puts $f "# error No atomic bool"
puts $f "#endif"
puts $f "#if __GCC_ATOMIC_INT_LOCK_FREE < 2"
puts $f "# error No atomic int"
puts $f "#endif"
close $f
set cxxflags_saved $cxxflags
set cxxflags "$cxxflags $DEFAULT_CXXFLAGS -Werror -std=gnu++11"
set lines [v3_target_compile $src /dev/null preprocess ""]
set cxxflags $cxxflags_saved
file delete $src
if [string match "" $lines] {
# No error message, preprocess succeeded.
set et_atomic_builtins 1
} else {
verbose "check_v3_target_atomic_builtins: compilation failed" 2
}
}
verbose "check_v3_target_atomic_builtins: $et_atomic_builtins" 2
return $et_atomic_builtins
}
proc check_v3_target_gthreads { } {
global cxxflags
global DEFAULT_CXXFLAGS
global et_gthreads
global tool
if { ![info exists et_gthreads_target_name] } {
set et_gthreads_target_name ""
}
# If the target has changed since we set the cached value, clear it.
set current_target [current_target_name]
if { $current_target != $et_gthreads_target_name } {
verbose "check_v3_target_gthreads: `$et_gthreads_target_name'" 2
set et_gthreads_target_name $current_target
if [info exists et_gthreads] {
verbose "check_v3_target_gthreads: removing cached result" 2
unset et_gthreads
}
}
if [info exists et_gthreads] {
verbose "check_v3_target_gthreads: using cached result" 2
} else {
set et_gthreads 0
# Set up and preprocess a C++0x test program that depends
# on the gthreads facilities to be available.
set src gthreads[pid].cc
set f [open $src "w"]
puts $f "#include <bits/c++config.h>"
puts $f "#ifndef _GLIBCXX_HAS_GTHREADS"
puts $f "# error No gthread"
puts $f "#endif"
close $f
set cxxflags_saved $cxxflags
set cxxflags "$cxxflags $DEFAULT_CXXFLAGS -Werror"
set lines [v3_target_compile $src /dev/null preprocess ""]
set cxxflags $cxxflags_saved
file delete $src
if [string match "" $lines] {
# No error message, preprocessing succeeded.
set et_gthreads 1
} else {
verbose "check_v3_target_gthreads: compilation failed" 2
}
}
verbose "check_v3_target_gthreads: $et_gthreads" 2
return $et_gthreads
}
proc check_v3_target_gthreads_timed { } {
global cxxflags
global DEFAULT_CXXFLAGS
global et_gthreads_timed
global tool
if { ![info exists et_gthreads_timed_target_name] } {
set et_gthreads_timed_target_name ""
}
# If the target has changed since we set the cached value, clear it.
set current_target [current_target_name]
if { $current_target != $et_gthreads_timed_target_name } {
verbose "check_v3_target_gthreads_timed: `$et_gthreads_timed_target_name'" 2
set et_gthreads_timed_target_name $current_target
if [info exists et_gthreads_timed] {
verbose "check_v3_target_gthreads_timed: removing cached result" 2
unset et_gthreads_timed
}
}
if [info exists et_gthreads_timed] {
verbose "check_v3_target_gthreads_timed: using cached result" 2
} else {
set et_gthreads_timed 0
# Set up and preprocess a C++0x test program that depends
# on the gthreads timed mutex facilities to be available.
set src gthreads_timed[pid].cc
set f [open $src "w"]
puts $f "#include <bits/c++config.h>"
puts $f "#ifndef _GLIBCXX_HAS_GTHREADS"
puts $f "# error No gthread"
puts $f "#endif"
puts $f "#if !_GTHREAD_USE_MUTEX_TIMEDLOCK"
puts $f "# error No gthread timed mutexes"
puts $f "#endif"
close $f
set cxxflags_saved $cxxflags
set cxxflags "$cxxflags $DEFAULT_CXXFLAGS -Werror"
set lines [v3_target_compile $src /dev/null preprocess ""]
set cxxflags $cxxflags_saved
file delete $src
if [string match "" $lines] {
# No error message, preprocessing succeeded.
set et_gthreads_timed 1
} else {
verbose "check_v3_target_gthreads_timed: compilation failed" 2
}
}
verbose "check_v3_target_gthreads_timed: $et_gthreads_timed" 2
return $et_gthreads_timed
}
proc check_v3_target_sleep { } {
global cxxflags
global DEFAULT_CXXFLAGS
global et_sleep
global tool
if { ![info exists et_sleep_target_name] } {
set et_sleep_target_name ""
}
# If the target has changed since we set the cached value, clear it.
set current_target [current_target_name]
if { $current_target != $et_sleep_target_name } {
verbose "check_v3_target_sleep: `$et_sleep_target_name'" 2
set et_sleep_target_name $current_target
if [info exists et_sleep] {
verbose "check_v3_target_sleep: removing cached result" 2
unset et_sleep
}
}
if [info exists et_sleep] {
verbose "check_v3_target_sleep: using cached result" 2
} else {
set et_sleep 0
# Set up and preprocess a C++11 test program that depends
# on the sleep facilities to be available.
set src sleep[pid].cc
set f [open $src "w"]
puts $f "#include <bits/c++config.h>"
puts $f "#ifndef _GLIBCXX_USE_NANOSLEEP"
puts $f "# ifndef _GLIBCXX_HAVE_SLEEP"
puts $f "# error No nanosleep or sleep"
puts $f "# endif"
puts $f "#endif"
close $f
set cxxflags_saved $cxxflags
set cxxflags "$cxxflags $DEFAULT_CXXFLAGS -Werror"
set lines [v3_target_compile $src /dev/null preprocess ""]
set cxxflags $cxxflags_saved
file delete $src
if [string match "" $lines] {
# No error message, preprocessing succeeded.
set et_sleep 1
} else {
verbose "check_v3_target_sleep: compilation failed" 2
}
}
verbose "check_v3_target_sleep: $et_sleep" 2
return $et_sleep
}
proc check_v3_target_sched_yield { } {
global cxxflags
global DEFAULT_CXXFLAGS
global et_sched_yield
global tool
if { ![info exists et_sched_yield_target_name] } {
set et_sched_yield_target_name ""
}
# If the target has changed since we set the cached value, clear it.
set current_target [current_target_name]
if { $current_target != $et_sched_yield_target_name } {
verbose "check_v3_target_sched_yield: `$et_sched_yield_target_name'" 2
set et_sched_yield_target_name $current_target
if [info exists et_sched_yield] {
verbose "check_v3_target_sched_yield: removing cached result" 2
unset et_sched_yield
}
}
if [info exists et_sched_yield] {
verbose "check_v3_target_sched_yield: using cached result" 2
} else {
set et_sched_yield 0
# Set up and preprocess a C++0x test program that depends
# on the sched_yield facility to be available.
set src sched_yield[pid].cc
set f [open $src "w"]
puts $f "#include <bits/c++config.h>"
puts $f "#ifndef _GLIBCXX_USE_SCHED_YIELD"
puts $f "# error No sched yield"
puts $f "#endif"
close $f
set cxxflags_saved $cxxflags
set cxxflags "$cxxflags $DEFAULT_CXXFLAGS -Werror"
set lines [v3_target_compile $src /dev/null preprocess ""]
set cxxflags $cxxflags_saved
file delete $src
if [string match "" $lines] {
# No error message, preprocessing succeeded.
set et_sched_yield 1
} else {
verbose "check_v3_target_sched_yield: compilation failed" 2
}
}
verbose "check_v3_target_sched_yield: $et_sched_yield" 2
return $et_sched_yield
}
proc check_v3_target_string_conversions { } {
global cxxflags
global DEFAULT_CXXFLAGS
global et_string_conversions
global tool
if { ![info exists et_string_conversions_target_name] } {
set et_string_conversions_target_name ""
}
# If the target has changed since we set the cached value, clear it.
set current_target [current_target_name]
if { $current_target != $et_string_conversions_target_name } {
verbose "check_v3_target_string_conversions: `$et_string_conversions_target_name'" 2
set et_string_conversions_target_name $current_target
if [info exists et_string_conversions] {
verbose "check_v3_target_string_conversions: removing cached result" 2
unset et_string_conversions
}
}
if [info exists et_string_conversions] {
verbose "check_v3_target_string_conversions: using cached result" 2
} else {
set et_string_conversions 0
# Set up and preprocess a C++0x test program that depends
# on the string_conversions facilities to be available.
set src string_conversions[pid].cc
set f [open $src "w"]
puts $f "#include <bits/c++config.h>"
puts $f "#if !defined(_GLIBCXX_USE_C99) || defined(_GLIBCXX_HAVE_BROKEN_VSWPRINTF)"
puts $f "# error No string conversions"
puts $f "#endif"
close $f
set cxxflags_saved $cxxflags
set cxxflags "$cxxflags $DEFAULT_CXXFLAGS -Werror"
set lines [v3_target_compile $src /dev/null preprocess ""]
set cxxflags $cxxflags_saved
file delete $src
if [string match "" $lines] {
# No error message, preprocessing succeeded.
set et_string_conversions 1
} else {
verbose "check_v3_target_string_conversions: compilation failed" 2
}
}
verbose "check_v3_target_string_conversions: $et_string_conversions" 2
return $et_string_conversions
}
proc check_v3_target_swprintf { } {
global cxxflags
global DEFAULT_CXXFLAGS
global et_swprintf
global tool
if { ![info exists et_swprintf_target_name] } {
set et_swprintf_target_name ""
}
# If the target has changed since we set the cached value, clear it.
set current_target [current_target_name]
if { $current_target != $et_swprintf_target_name } {
verbose "check_v3_target_swprintf: `$et_swprintf_target_name'" 2
set et_swprintf_target_name $current_target
if [info exists et_swprintf] {
verbose "check_v3_target_swprintf: removing cached result" 2
unset et_swprintf
}
}
if [info exists et_swprintf] {
verbose "check_v3_target_swprintf: using cached result" 2
} else {
set et_swprintf 0
# Set up and preprocess a C++0x test program that depends
# on a standard swprintf function to be available.
set src swprintf[pid].cc
set f [open $src "w"]
puts $f "#include <bits/c++config.h>"
puts $f "#if defined(_GLIBCXX_HAVE_BROKEN_VSWPRINTF)"
puts $f "# error No swprintf"
puts $f "#endif"
close $f
set cxxflags_saved $cxxflags
set cxxflags "$cxxflags $DEFAULT_CXXFLAGS -Werror"
set lines [v3_target_compile $src /dev/null preprocess ""]
set cxxflags $cxxflags_saved
file delete $src
if [string match "" $lines] {
# No error message, preprocessing succeeded.
set et_swprintf 1
} else {
verbose "check_v3_target_swprintf: compilation failed" 2
}
}
verbose "check_v3_target_swprintf: $et_swprintf" 2
return $et_swprintf
}
proc check_v3_target_binary_io { } {
global cxxflags
global DEFAULT_CXXFLAGS
global et_binary_io
global tool
if { ![info exists et_binary_io_target_name] } {
set et_binary_io_target_name ""
}
# If the target has changed since we set the cached value, clear it.
set current_target [current_target_name]
if { $current_target != $et_binary_io_target_name } {
verbose "check_v3_target_binary_io: `$et_binary_io_target_name'" 2
set et_binary_io_target_name $current_target
if [info exists et_binary_io] {
verbose "check_v3_target_binary_io: removing cached result" 2
unset et_binary_io
}
}
if [info exists et_binary_io] {
verbose "check_v3_target_binary_io: using cached result" 2
} else {
set et_binary_io 0
# Set up and preprocess a C++0x test program that depends
# on text and binary I/O being the same.
set src binary_io[pid].cc
set f [open $src "w"]
puts $f "#include <bits/c++config.h>"
puts $f "#if defined(_GLIBCXX_HAVE_DOS_BASED_FILESYSTEM)"
puts $f "# error No binary io"
puts $f "#endif"
close $f
set cxxflags_saved $cxxflags
set cxxflags "$cxxflags $DEFAULT_CXXFLAGS -Werror"
set lines [v3_target_compile $src /dev/null preprocess ""]
set cxxflags $cxxflags_saved
file delete $src
if [string match "" $lines] {
# No error message, preprocessing succeeded.
set et_binary_io 1
} else {
verbose "check_v3_target_binary_io: compilation failed" 2
}
}
verbose "check_v3_target_binary_io: $et_binary_io" 2
return $et_binary_io
}
proc check_v3_target_nprocs { } {
global cxxflags
global DEFAULT_CXXFLAGS
global et_nprocs
global tool
if { ![info exists et_nprocs_target_name] } {
set et_nprocs_target_name ""
}
# If the target has changed since we set the cached value, clear it.
set current_target [current_target_name]
if { $current_target != $et_nprocs_target_name } {
verbose "check_v3_target_nprocs: `$et_nprocs_target_name'" 2
set et_nprocs_target_name $current_target
if [info exists et_nprocs] {
verbose "check_v3_target_nprocs: removing cached result" 2
unset et_nprocs
}
}
if [info exists et_nprocs] {
verbose "check_v3_target_nprocs: using cached result" 2
} else {
set et_nprocs 0
# Set up and preprocess a C++0x test program that depends
# on either get_nprocs or sysconf to be available.
set src nprocs[pid].cc
set f [open $src "w"]
puts $f "#include <bits/c++config.h>"
puts $f "#if defined(_GLIBCXX_USE_GET_NPROCS)"
puts $f "#elif defined(_GLIBCXX_USE_PTHREADS_NUM_PROCESSORS_NP)"
puts $f "#elif defined(_GLIBCXX_USE_SYSCTL_HW_NCPU)"
puts $f "#elif defined(_GLIBCXX_USE_SC_NPROCESSORS_ONLN)"
puts $f "#elif defined(_GLIBCXX_USE_SC_NPROC_ONLN)"
puts $f "#else"
puts $f "# error hardware_concurrency not implemented"
puts $f "#endif"
close $f
set cxxflags_saved $cxxflags
set cxxflags "$cxxflags $DEFAULT_CXXFLAGS -Werror"
set lines [v3_target_compile $src /dev/null preprocess ""]
set cxxflags $cxxflags_saved
file delete $src
if [string match "" $lines] {
# No error message, preprocess succeeded.
set et_nprocs 1
} else {
verbose "check_v3_target_nprocs: compilation failed" 2
}
}
verbose "check_v3_target_nprocs: $et_nprocs" 2
return $et_nprocs
}
proc check_v3_target_static_libstdcxx { } {
global cxxflags
global DEFAULT_CXXFLAGS
global et_static_libstdcxx
global tool
if [info exists et_static_libstdcxx] {
verbose "check_v3_target_static_libstdcxx: using cached result" 2
} else {
set et_static_libstdcxx 0
# Set up and link a C++0x test program that depends
# on static linking
set src static-maybe[pid].cc
set f [open $src "w"]
puts $f "#include <iostream>"
puts $f "int main() {"
puts $f "int i(415);"
puts $f "std::cout<< i << std::endl;"
puts $f "return 0; }"
puts $f ""
close $f
set cxxflags_saved $cxxflags
set cxxflags "$cxxflags $DEFAULT_CXXFLAGS -static-libstdc++"
set lines [v3_target_compile $src /dev/null executable ""]
set cxxflags $cxxflags_saved
file delete $src
if [string match "" $lines] {
# No error message, link succeeded.
set et_static_libstdcxx 1
} else {
verbose "check_v3_target_static_libstdcxx: compilation failed" 2
}
}
verbose "check_v3_target_static_libstdcxx: $et_static_libstdcxx" 2
return $et_static_libstdcxx
}
proc check_v3_target_little_endian { } {
global cxxflags
global DEFAULT_CXXFLAGS
global et_little_endian
global tool
if { ![info exists et_little_endian_target_name] } {
set et_little_endian_target_name ""
}
# If the target has changed since we set the cached value, clear it.
set current_target [current_target_name]
if { $current_target != $et_little_endian_target_name } {
verbose "check_v3_target_little_endian: `$et_little_endian_target_name'" 2
set et_little_endian_target_name $current_target
if [info exists et_little_endian] {
verbose "check_v3_target_little_endian: removing cached result" 2
unset et_little_endian
}
}
if [info exists et_little_endian] {
verbose "check_v3_target_little_endian: using cached result" 2
} else {
set et_little_endian 0
set src little_endian[pid].cc
set f [open $src "w"]
puts $f "#if __BYTE_ORDER__ != __ORDER_LITTLE_ENDIAN__"
puts $f "# error Not little endian"
puts $f "#endif"
close $f
set cxxflags_saved $cxxflags
set cxxflags "$cxxflags $DEFAULT_CXXFLAGS -Werror"
set lines [v3_target_compile $src /dev/null preprocess ""]
set cxxflags $cxxflags_saved
file delete $src
if [string match "" $lines] {
# No error message, preprocessing succeeded.
set et_little_endian 1
} else {
verbose "check_v3_target_little_endian: compilation failed" 2
}
}
verbose "check_v3_target_little_endian: $et_little_endian" 2
return $et_little_endian
}
proc check_v3_target_filesystem_ts { } {
global cxxflags
global DEFAULT_CXXFLAGS
global et_filesystem_ts
global tool
if { ![info exists et_filesystem_ts_target_name] } {
set et_filesystem_ts_target_name ""
}
# If the target has changed since we set the cached value, clear it.
set current_target [current_target_name]
if { $current_target != $et_filesystem_ts_target_name } {
verbose "check_v3_target_filesystem_ts: `$et_filesystem_ts_target_name'" 2
set et_filesystem_ts_target_name $current_target
if [info exists et_filesystem_ts] {
verbose "check_v3_target_filesystem_ts: removing cached result" 2
unset et_filesystem_ts
}
}
if [info exists et_filesystem_ts] {
verbose "check_v3_target_filesystem_ts: using cached result" 2
} else {
set et_filesystem_ts 0
# Set up and preprocess a C++ test program that depends
# on debug mode activated.
set src filesystem_ts[pid].cc
set f [open $src "w"]
puts $f "#include <experimental/filesystem>"
puts $f "#if ! __cpp_lib_experimental_filesystem"
puts $f "# error No Filesystem TS support"
puts $f "#endif"
close $f
set cxxflags_saved $cxxflags
set cxxflags "$cxxflags $DEFAULT_CXXFLAGS -Werror -std=gnu++11"
set lines [v3_target_compile $src /dev/null preprocess ""]
set cxxflags $cxxflags_saved
file delete $src
if [string match "" $lines] {
# No error message, preprocessing succeeded.
set et_filesystem_ts 1
}
}
verbose "check_v3_target_filesystem_ts: $et_filesystem_ts" 2
return $et_filesystem_ts
}
set additional_prunes ""
if { [info exists env(GCC_RUNTEST_PARALLELIZE_DIR)] \
&& [info procs runtest_file_p] != [list] \
&& [info procs gcc_parallelize_saved_runtest_file_p] == [list] } then {
global gcc_runtest_parallelize_counter
global gcc_runtest_parallelize_counter_minor
global gcc_runtest_parallelize_enable
global gcc_runtest_parallelize_dir
global gcc_runtest_parallelize_last
set gcc_runtest_parallelize_counter 0
set gcc_runtest_parallelize_counter_minor 0
set gcc_runtest_parallelize_enable 1
set gcc_runtest_parallelize_dir [getenv GCC_RUNTEST_PARALLELIZE_DIR]
set gcc_runtest_parallelize_last 0
proc gcc_parallel_test_run_p { testcase } {
global gcc_runtest_parallelize_counter
global gcc_runtest_parallelize_counter_minor
global gcc_runtest_parallelize_enable
global gcc_runtest_parallelize_dir
global gcc_runtest_parallelize_last
if { $gcc_runtest_parallelize_enable == 0 } {
return 1
}
# Only test the filesystem every 10th iteration
incr gcc_runtest_parallelize_counter_minor
if { $gcc_runtest_parallelize_counter_minor == 10 } {
set gcc_runtest_parallelize_counter_minor 0
}
if { $gcc_runtest_parallelize_counter_minor != 1 } {
#verbose -log "gcc_parallel_test_run_p $testcase $gcc_runtest_parallelize_counter $gcc_runtest_parallelize_last"
return $gcc_runtest_parallelize_last
}
set path $gcc_runtest_parallelize_dir/$gcc_runtest_parallelize_counter
if {![catch {open $path {RDWR CREAT EXCL} 0600} fd]} {
close $fd
set gcc_runtest_parallelize_last 1
#verbose -log "gcc_parallel_test_run_p $testcase $gcc_runtest_parallelize_counter 1"
incr gcc_runtest_parallelize_counter
return 1
}
set gcc_runtest_parallelize_last 0
#verbose -log "gcc_parallel_test_run_p $testcase $gcc_runtest_parallelize_counter 0"
incr gcc_runtest_parallelize_counter
return 0
}
proc gcc_parallel_test_enable { val } {
global gcc_runtest_parallelize_enable
set gcc_runtest_parallelize_enable $val
}
rename runtest_file_p gcc_parallelize_saved_runtest_file_p
proc runtest_file_p { runtests testcase } {
if ![gcc_parallelize_saved_runtest_file_p $runtests $testcase] {
return 0
}
return [gcc_parallel_test_run_p $testcase]
}
} else {
proc gcc_parallel_test_run_p { testcase } {
return 1
}
proc gcc_parallel_test_enable { val } {
}
}
|