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 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525
| ''' \u@\h DiFX-2.4.1 \W> source setup.bash DiFX version DiFX-2.4.1 is selected \u@\h DiFX-2.4.1 \W> ./install-difx ************************************ Getting environmental variables
************************************ Setting up directories
/home/AstroSoft/DiFX2.4.1/lib/pkgconfig/ipp.pc already exists
************************************ Building difxio/
libtoolize: putting auxiliary files in `.'. libtoolize: copying file `./ltmain.sh' libtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.ac and libtoolize: rerunning libtoolize, to keep the correct libtool macros in-tree. libtoolize: Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am. difxio/Makefile.am:43: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS') tests/Makefile.am:1: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS') utils/Makefile.am:1: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS') checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /usr/bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking for style of include used by make... GNU checking dependency style of gcc... gcc3 checking build system type... x86_64-unknown-linux-gnu checking host system type... x86_64-unknown-linux-gnu checking how to print strings... printf checking for a sed that does not truncate output... /usr/bin/sed checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for fgrep... /usr/bin/grep -F checking for ld used by gcc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop checking for /usr/bin/ld option to reload object files... -r checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for dlltool... no checking how to associate runtime and link libraries... printf %s\n checking for ar... ar checking for archiver @FILE support... @ checking for strip... strip checking for ranlib... ranlib checking command to parse /usr/bin/nm -B output from gcc object... ok checking for sysroot... no checking for mt... no checking if : is a manifest tool... no checking how to run the C preprocessor... gcc -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking for dlfcn.h... yes checking for objdir... .libs checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... yes checking if gcc static flag -static works... no checking if gcc supports -c -o file.o... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking whether build environment is sane... yes Spice disabled checking whether to enable fftw (default yes)... yes checking for pkg-config... /usr/bin/pkg-config checking pkg-config is at least version 0.9.0... yes checking for FFTW3... yes checking that generated files are newer than configure... done checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: creating difxio.pc config.status: creating difxio.spec config.status: creating difxio/Makefile config.status: creating tests/Makefile config.status: creating utils/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands config.status: executing libtool commands make all-recursive make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxio' Making all in difxio make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxio/difxio' make[2]: Nothing to be done for `all'. make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxio/difxio' Making all in utils make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxio/utils' make[2]: Nothing to be done for `all'. make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxio/utils' Making all in tests make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxio/tests' make[2]: Nothing to be done for `all'. make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxio/tests' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxio' make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxio' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxio' Making install in difxio make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxio/difxio' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxio/difxio' /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/lib' /bin/sh ../libtool --mode=install /usr/bin/install -c libdifxio.la '/home/AstroSoft/DiFX2.4.1/lib' libtool: install: /usr/bin/install -c .libs/libdifxio.so.0.0.0 /home/AstroSoft/DiFX2.4.1/lib/libdifxio.so.0.0.0 libtool: install: (cd /home/AstroSoft/DiFX2.4.1/lib && { ln -s -f libdifxio.so.0.0.0 libdifxio.so.0 || { rm -f libdifxio.so.0 && ln -s libdifxio.so.0.0.0 libdifxio.so.0; }; }) libtool: install: (cd /home/AstroSoft/DiFX2.4.1/lib && { ln -s -f libdifxio.so.0.0.0 libdifxio.so || { rm -f libdifxio.so && ln -s libdifxio.so.0.0.0 libdifxio.so; }; }) libtool: install: /usr/bin/install -c .libs/libdifxio.lai /home/AstroSoft/DiFX2.4.1/lib/libdifxio.la libtool: install: /usr/bin/install -c .libs/libdifxio.a /home/AstroSoft/DiFX2.4.1/lib/libdifxio.a libtool: install: chmod 644 /home/AstroSoft/DiFX2.4.1/lib/libdifxio.a libtool: install: ranlib /home/AstroSoft/DiFX2.4.1/lib/libdifxio.a libtool: finish: PATH="/home/AstroSoft/DiFX2.4.1/bin:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin:/opt/casa/casa-release-4.7.0-1-el7/bin:/sbin" ldconfig -n /home/AstroSoft/DiFX2.4.1/lib ---------------------------------------------------------------------- Libraries have been installed in: /home/AstroSoft/DiFX2.4.1/lib
If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf'
See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/include/difxio' /usr/bin/install -c -m 644 difx_input.h parsedifx.h parsevis.h difx_write.h difx_calculator.h difx_tcal.h '/home/AstroSoft/DiFX2.4.1/include/difxio' make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxio/difxio' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxio/difxio' Making install in utils make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxio/utils' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxio/utils' /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/bin' /bin/sh ../libtool --mode=install /usr/bin/install -c psrflag difxcalculator '/home/AstroSoft/DiFX2.4.1/bin' libtool: install: /usr/bin/install -c .libs/psrflag /home/AstroSoft/DiFX2.4.1/bin/psrflag libtool: install: /usr/bin/install -c .libs/difxcalculator /home/AstroSoft/DiFX2.4.1/bin/difxcalculator make[2]: Nothing to be done for `install-data-am'. make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxio/utils' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxio/utils' Making install in tests make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxio/tests' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxio/tests' /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/bin' /bin/sh ../libtool --mode=install /usr/bin/install -c testdifxinput testparsedifx testparsevis testtcal pbgen testephem teststringarray '/home/AstroSoft/DiFX2.4.1/bin' libtool: install: /usr/bin/install -c .libs/testdifxinput /home/AstroSoft/DiFX2.4.1/bin/testdifxinput libtool: install: /usr/bin/install -c .libs/testparsedifx /home/AstroSoft/DiFX2.4.1/bin/testparsedifx libtool: install: /usr/bin/install -c .libs/testparsevis /home/AstroSoft/DiFX2.4.1/bin/testparsevis libtool: install: /usr/bin/install -c .libs/testtcal /home/AstroSoft/DiFX2.4.1/bin/testtcal libtool: install: /usr/bin/install -c .libs/pbgen /home/AstroSoft/DiFX2.4.1/bin/pbgen libtool: install: /usr/bin/install -c .libs/testephem /home/AstroSoft/DiFX2.4.1/bin/testephem libtool: install: /usr/bin/install -c .libs/teststringarray /home/AstroSoft/DiFX2.4.1/bin/teststringarray make[2]: Nothing to be done for `install-data-am'. make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxio/tests' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxio/tests' make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxio' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxio' make[2]: Nothing to be done for `install-exec-am'. /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/include' /usr/bin/install -c -m 644 difxio.h '/home/AstroSoft/DiFX2.4.1/include' /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/lib/pkgconfig' /usr/bin/install -c -m 644 difxio.pc '/home/AstroSoft/DiFX2.4.1/lib/pkgconfig' make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxio' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxio'
************************************ Building difxmessage/
libtoolize: putting auxiliary files in `.'. libtoolize: copying file `./ltmain.sh' libtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.ac and libtoolize: rerunning libtoolize, to keep the correct libtool macros in-tree. libtoolize: Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am. difxmessage/Makefile.am:22: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS') mark5ipc/Makefile.am:7: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS') utils/Makefile.am:1: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS') checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /usr/bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking for style of include used by make... GNU checking dependency style of gcc... gcc3 checking build system type... x86_64-unknown-linux-gnu checking host system type... x86_64-unknown-linux-gnu checking how to print strings... printf checking for a sed that does not truncate output... /usr/bin/sed checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for fgrep... /usr/bin/grep -F checking for ld used by gcc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop checking for /usr/bin/ld option to reload object files... -r checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for dlltool... no checking how to associate runtime and link libraries... printf %s\n checking for ar... ar checking for archiver @FILE support... @ checking for strip... strip checking for ranlib... ranlib checking command to parse /usr/bin/nm -B output from gcc object... ok checking for sysroot... no checking for mt... no checking if : is a manifest tool... no checking how to run the C preprocessor... gcc -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking for dlfcn.h... yes checking for objdir... .libs checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... yes checking if gcc static flag -static works... no checking if gcc supports -c -o file.o... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking whether build environment is sane... yes checking expat.h usability... yes checking expat.h presence... yes checking for expat.h... yes checking that generated files are newer than configure... done checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: creating difxmessage.pc config.status: creating difxmessage.spec config.status: creating mark5ipc.pc config.status: creating difxmessage/Makefile config.status: creating mark5ipc/Makefile config.status: creating utils/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands config.status: executing libtool commands make all-recursive make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxmessage' Making all in difxmessage make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxmessage/difxmessage' make[2]: Nothing to be done for `all'. make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxmessage/difxmessage' Making all in mark5ipc make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxmessage/mark5ipc' make[2]: Nothing to be done for `all'. make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxmessage/mark5ipc' Making all in utils make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxmessage/utils' make[2]: Nothing to be done for `all'. make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxmessage/utils' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxmessage' make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxmessage' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxmessage' Making install in difxmessage make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxmessage/difxmessage' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxmessage/difxmessage' /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/lib' /bin/sh ../libtool --mode=install /usr/bin/install -c libdifxmessage.la '/home/AstroSoft/DiFX2.4.1/lib' libtool: install: /usr/bin/install -c .libs/libdifxmessage.so.0.0.0 /home/AstroSoft/DiFX2.4.1/lib/libdifxmessage.so.0.0.0 libtool: install: (cd /home/AstroSoft/DiFX2.4.1/lib && { ln -s -f libdifxmessage.so.0.0.0 libdifxmessage.so.0 || { rm -f libdifxmessage.so.0 && ln -s libdifxmessage.so.0.0.0 libdifxmessage.so.0; }; }) libtool: install: (cd /home/AstroSoft/DiFX2.4.1/lib && { ln -s -f libdifxmessage.so.0.0.0 libdifxmessage.so || { rm -f libdifxmessage.so && ln -s libdifxmessage.so.0.0.0 libdifxmessage.so; }; }) libtool: install: /usr/bin/install -c .libs/libdifxmessage.lai /home/AstroSoft/DiFX2.4.1/lib/libdifxmessage.la libtool: install: /usr/bin/install -c .libs/libdifxmessage.a /home/AstroSoft/DiFX2.4.1/lib/libdifxmessage.a libtool: install: chmod 644 /home/AstroSoft/DiFX2.4.1/lib/libdifxmessage.a libtool: install: ranlib /home/AstroSoft/DiFX2.4.1/lib/libdifxmessage.a libtool: finish: PATH="/home/AstroSoft/DiFX2.4.1/bin:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin:/opt/casa/casa-release-4.7.0-1-el7/bin:/sbin" ldconfig -n /home/AstroSoft/DiFX2.4.1/lib ---------------------------------------------------------------------- Libraries have been installed in: /home/AstroSoft/DiFX2.4.1/lib
If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf'
See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/include/difxmessage' /usr/bin/install -c -m 644 difxmessageinternal.h '/home/AstroSoft/DiFX2.4.1/include/difxmessage' make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxmessage/difxmessage' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxmessage/difxmessage' Making install in mark5ipc make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxmessage/mark5ipc' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxmessage/mark5ipc' /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/lib' /bin/sh ../libtool --mode=install /usr/bin/install -c libmark5ipc.la '/home/AstroSoft/DiFX2.4.1/lib' libtool: install: /usr/bin/install -c .libs/libmark5ipc.so.0.0.0 /home/AstroSoft/DiFX2.4.1/lib/libmark5ipc.so.0.0.0 libtool: install: (cd /home/AstroSoft/DiFX2.4.1/lib && { ln -s -f libmark5ipc.so.0.0.0 libmark5ipc.so.0 || { rm -f libmark5ipc.so.0 && ln -s libmark5ipc.so.0.0.0 libmark5ipc.so.0; }; }) libtool: install: (cd /home/AstroSoft/DiFX2.4.1/lib && { ln -s -f libmark5ipc.so.0.0.0 libmark5ipc.so || { rm -f libmark5ipc.so && ln -s libmark5ipc.so.0.0.0 libmark5ipc.so; }; }) libtool: install: /usr/bin/install -c .libs/libmark5ipc.lai /home/AstroSoft/DiFX2.4.1/lib/libmark5ipc.la libtool: install: /usr/bin/install -c .libs/libmark5ipc.a /home/AstroSoft/DiFX2.4.1/lib/libmark5ipc.a libtool: install: chmod 644 /home/AstroSoft/DiFX2.4.1/lib/libmark5ipc.a libtool: install: ranlib /home/AstroSoft/DiFX2.4.1/lib/libmark5ipc.a libtool: finish: PATH="/home/AstroSoft/DiFX2.4.1/bin:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin:/opt/casa/casa-release-4.7.0-1-el7/bin:/sbin" ldconfig -n /home/AstroSoft/DiFX2.4.1/lib ---------------------------------------------------------------------- Libraries have been installed in: /home/AstroSoft/DiFX2.4.1/lib
If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf'
See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxmessage/mark5ipc' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxmessage/mark5ipc' Making install in utils make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxmessage/utils' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxmessage/utils' /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/bin' /bin/sh ../libtool --mode=install /usr/bin/install -c testdifxmessagesend testdifxmessagereceive testdifxmessagereceivecond testdifxmessagedrivestats testseqnumbers testm5lock sendtransient sendsmart updatedifxclock difxlog probemachine '/home/AstroSoft/DiFX2.4.1/bin' libtool: install: /usr/bin/install -c .libs/testdifxmessagesend /home/AstroSoft/DiFX2.4.1/bin/testdifxmessagesend libtool: install: /usr/bin/install -c .libs/testdifxmessagereceive /home/AstroSoft/DiFX2.4.1/bin/testdifxmessagereceive libtool: install: /usr/bin/install -c .libs/testdifxmessagereceivecond /home/AstroSoft/DiFX2.4.1/bin/testdifxmessagereceivecond libtool: install: /usr/bin/install -c .libs/testdifxmessagedrivestats /home/AstroSoft/DiFX2.4.1/bin/testdifxmessagedrivestats libtool: install: /usr/bin/install -c .libs/testseqnumbers /home/AstroSoft/DiFX2.4.1/bin/testseqnumbers libtool: install: /usr/bin/install -c .libs/testm5lock /home/AstroSoft/DiFX2.4.1/bin/testm5lock libtool: install: /usr/bin/install -c .libs/sendtransient /home/AstroSoft/DiFX2.4.1/bin/sendtransient libtool: install: /usr/bin/install -c .libs/sendsmart /home/AstroSoft/DiFX2.4.1/bin/sendsmart libtool: install: /usr/bin/install -c .libs/updatedifxclock /home/AstroSoft/DiFX2.4.1/bin/updatedifxclock libtool: install: /usr/bin/install -c .libs/difxlog /home/AstroSoft/DiFX2.4.1/bin/difxlog libtool: install: /usr/bin/install -c .libs/probemachine /home/AstroSoft/DiFX2.4.1/bin/probemachine /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/bin' /usr/bin/install -c cpumon getsmart errormon errormon2 mk5mon smartmon statemon restartdifx difxdiagnosticmon mk5display difxwatch '/home/AstroSoft/DiFX2.4.1/bin' make[2]: Nothing to be done for `install-data-am'. make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxmessage/utils' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxmessage/utils' make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxmessage' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxmessage' make[2]: Nothing to be done for `install-exec-am'. /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/include' /usr/bin/install -c -m 644 difxmessage.h mark5ipc.h '/home/AstroSoft/DiFX2.4.1/include' /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/lib/pkgconfig' /usr/bin/install -c -m 644 difxmessage.pc mark5ipc.pc '/home/AstroSoft/DiFX2.4.1/lib/pkgconfig' make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxmessage' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/difxmessage'
************************************ Building mark5access/
libtoolize: putting auxiliary files in `.'. libtoolize: copying file `./ltmain.sh' libtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.ac and libtoolize: rerunning libtoolize, to keep the correct libtool macros in-tree. libtoolize: Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am. bbsum/Makefile.am:1: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS') examples/Makefile.am:1: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS') mark5access/Makefile.am:26: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS') checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking how to run the C preprocessor... gcc -E checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking whether byte ordering is bigendian... no checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /usr/bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking for style of include used by make... GNU checking whether make supports nested variables... yes checking dependency style of gcc... gcc3 checking for special C compiler options needed for large files... no checking for _FILE_OFFSET_BITS value needed for large files... no checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking whether gcc and cc understand -c and -o together... yes checking build system type... x86_64-unknown-linux-gnu checking host system type... x86_64-unknown-linux-gnu checking how to print strings... printf checking for a sed that does not truncate output... /usr/bin/sed checking for fgrep... /usr/bin/grep -F checking for ld used by gcc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop checking for /usr/bin/ld option to reload object files... -r checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for dlltool... no checking how to associate runtime and link libraries... printf %s\n checking for ar... ar checking for archiver @FILE support... @ checking for strip... strip checking for ranlib... ranlib checking command to parse /usr/bin/nm -B output from gcc object... ok checking for sysroot... no checking for mt... no checking if : is a manifest tool... no checking for dlfcn.h... yes checking for objdir... .libs checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... yes checking if gcc static flag -static works... no checking if gcc supports -c -o file.o... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking whether build environment is sane... yes checking for erf in -lm... yes checking for pkg-config... /usr/bin/pkg-config checking pkg-config is at least version 0.9.0... yes checking for FFTW3... yes checking that generated files are newer than configure... done checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: creating mark5access.pc config.status: creating mark5access.spec config.status: creating mark5access/Makefile config.status: creating bbsum/Makefile config.status: creating examples/Makefile config.status: creating doc/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands config.status: executing libtool commands make all-recursive make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/mark5access' Making all in mark5access make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/mark5access/mark5access' make[2]: Nothing to be done for `all'. make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/mark5access/mark5access' Making all in bbsum make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/mark5access/bbsum' make[2]: Nothing to be done for `all'. make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/mark5access/bbsum' Making all in examples make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/mark5access/examples' make[2]: Nothing to be done for `all'. make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/mark5access/examples' Making all in doc make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/mark5access/doc' make[2]: Nothing to be done for `all'. make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/mark5access/doc' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/mark5access' make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/mark5access' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/mark5access' Making install in mark5access make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/mark5access/mark5access' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/mark5access/mark5access' /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/lib' /bin/sh ../libtool --mode=install /usr/bin/install -c libmark5access.la '/home/AstroSoft/DiFX2.4.1/lib' libtool: install: /usr/bin/install -c .libs/libmark5access.so.0.0.0 /home/AstroSoft/DiFX2.4.1/lib/libmark5access.so.0.0.0 libtool: install: (cd /home/AstroSoft/DiFX2.4.1/lib && { ln -s -f libmark5access.so.0.0.0 libmark5access.so.0 || { rm -f libmark5access.so.0 && ln -s libmark5access.so.0.0.0 libmark5access.so.0; }; }) libtool: install: (cd /home/AstroSoft/DiFX2.4.1/lib && { ln -s -f libmark5access.so.0.0.0 libmark5access.so || { rm -f libmark5access.so && ln -s libmark5access.so.0.0.0 libmark5access.so; }; }) libtool: install: /usr/bin/install -c .libs/libmark5access.lai /home/AstroSoft/DiFX2.4.1/lib/libmark5access.la libtool: install: /usr/bin/install -c .libs/libmark5access.a /home/AstroSoft/DiFX2.4.1/lib/libmark5access.a libtool: install: chmod 644 /home/AstroSoft/DiFX2.4.1/lib/libmark5access.a libtool: install: ranlib /home/AstroSoft/DiFX2.4.1/lib/libmark5access.a libtool: finish: PATH="/home/AstroSoft/DiFX2.4.1/bin:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin:/opt/casa/casa-release-4.7.0-1-el7/bin:/sbin" ldconfig -n /home/AstroSoft/DiFX2.4.1/lib ---------------------------------------------------------------------- Libraries have been installed in: /home/AstroSoft/DiFX2.4.1/lib
If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf'
See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/include/mark5access' /usr/bin/install -c -m 644 mark5_stream.h mark5bfix.h mark5bfile.h '/home/AstroSoft/DiFX2.4.1/include/mark5access' make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/mark5access/mark5access' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/mark5access/mark5access' Making install in bbsum make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/mark5access/bbsum' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/mark5access/bbsum' /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/bin' /bin/sh ../libtool --mode=install /usr/bin/install -c bbsum '/home/AstroSoft/DiFX2.4.1/bin' libtool: install: /usr/bin/install -c .libs/bbsum /home/AstroSoft/DiFX2.4.1/bin/bbsum make[2]: Nothing to be done for `install-data-am'. make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/mark5access/bbsum' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/mark5access/bbsum' Making install in examples make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/mark5access/examples' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/mark5access/examples' /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/bin' /bin/sh ../libtool --mode=install /usr/bin/install -c directory2filelist fixmark5b m5bstate m5bsum m5d m5fold m5timeseries m5tsys m5test m5time m5slice m5findformats test5b test_mark5_stream test_unpacker m5pcal m5spec m5fb zerocorr '/home/AstroSoft/DiFX2.4.1/bin' libtool: install: /usr/bin/install -c .libs/directory2filelist /home/AstroSoft/DiFX2.4.1/bin/directory2filelist libtool: install: /usr/bin/install -c .libs/fixmark5b /home/AstroSoft/DiFX2.4.1/bin/fixmark5b libtool: install: /usr/bin/install -c .libs/m5bstate /home/AstroSoft/DiFX2.4.1/bin/m5bstate libtool: install: /usr/bin/install -c .libs/m5bsum /home/AstroSoft/DiFX2.4.1/bin/m5bsum libtool: install: /usr/bin/install -c .libs/m5d /home/AstroSoft/DiFX2.4.1/bin/m5d libtool: install: /usr/bin/install -c .libs/m5fold /home/AstroSoft/DiFX2.4.1/bin/m5fold libtool: install: /usr/bin/install -c .libs/m5timeseries /home/AstroSoft/DiFX2.4.1/bin/m5timeseries libtool: install: /usr/bin/install -c .libs/m5tsys /home/AstroSoft/DiFX2.4.1/bin/m5tsys libtool: install: /usr/bin/install -c .libs/m5test /home/AstroSoft/DiFX2.4.1/bin/m5test libtool: install: /usr/bin/install -c .libs/m5time /home/AstroSoft/DiFX2.4.1/bin/m5time libtool: install: /usr/bin/install -c .libs/m5slice /home/AstroSoft/DiFX2.4.1/bin/m5slice libtool: install: /usr/bin/install -c .libs/m5findformats /home/AstroSoft/DiFX2.4.1/bin/m5findformats libtool: install: /usr/bin/install -c .libs/test5b /home/AstroSoft/DiFX2.4.1/bin/test5b libtool: install: /usr/bin/install -c .libs/test_mark5_stream /home/AstroSoft/DiFX2.4.1/bin/test_mark5_stream libtool: install: /usr/bin/install -c .libs/test_unpacker /home/AstroSoft/DiFX2.4.1/bin/test_unpacker libtool: install: /usr/bin/install -c .libs/m5pcal /home/AstroSoft/DiFX2.4.1/bin/m5pcal libtool: install: /usr/bin/install -c .libs/m5spec /home/AstroSoft/DiFX2.4.1/bin/m5spec libtool: install: /usr/bin/install -c .libs/m5fb /home/AstroSoft/DiFX2.4.1/bin/m5fb libtool: install: /usr/bin/install -c .libs/zerocorr /home/AstroSoft/DiFX2.4.1/bin/zerocorr make[2]: Nothing to be done for `install-data-am'. make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/mark5access/examples' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/mark5access/examples' Making install in doc make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/mark5access/doc' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/mark5access/doc' make[2]: Nothing to be done for `install-exec-am'. make[2]: Nothing to be done for `install-data-am'. make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/mark5access/doc' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/mark5access/doc' make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/mark5access' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/mark5access' make[2]: Nothing to be done for `install-exec-am'. /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/include' /usr/bin/install -c -m 644 mark5access.h '/home/AstroSoft/DiFX2.4.1/include' /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/lib/pkgconfig' /usr/bin/install -c -m 644 mark5access.pc '/home/AstroSoft/DiFX2.4.1/lib/pkgconfig' make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/mark5access' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/mark5access'
************************************ Building vdifio/
libtoolize: putting auxiliary files in `.'. libtoolize: copying file `./ltmain.sh' libtoolize: putting macros in AC_CONFIG_MACRO_DIR, `m4'. libtoolize: copying file `m4/libtool.m4' libtoolize: copying file `m4/ltoptions.m4' libtoolize: copying file `m4/ltsugar.m4' libtoolize: copying file `m4/ltversion.m4' libtoolize: copying file `m4/lt~obsolete.m4' libtoolize: Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am. utils/Makefile.am:1: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS') checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /usr/bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking for style of include used by make... GNU checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking dependency style of gcc... gcc3 checking how to run the C preprocessor... gcc -E checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking size of size_t... 8 checking for special C compiler options needed for large files... no checking for _FILE_OFFSET_BITS value needed for large files... no checking for OpenMP flag of C compiler... -fopenmp checking whether byte ordering is bigendian... no checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking build system type... x86_64-unknown-linux-gnu checking host system type... x86_64-unknown-linux-gnu checking how to print strings... printf checking for a sed that does not truncate output... /usr/bin/sed checking for fgrep... /usr/bin/grep -F checking for ld used by gcc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop checking for /usr/bin/ld option to reload object files... -r checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for dlltool... no checking how to associate runtime and link libraries... printf %s\n checking for ar... ar checking for archiver @FILE support... @ checking for strip... strip checking for ranlib... ranlib checking command to parse /usr/bin/nm -B output from gcc object... ok checking for sysroot... no checking for mt... no checking if : is a manifest tool... no checking for dlfcn.h... yes checking for objdir... .libs checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... yes checking if gcc static flag -static works... no checking if gcc supports -c -o file.o... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: creating vdifio.spec config.status: creating src/Makefile config.status: creating utils/Makefile config.status: creating vdifio.pc config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands config.status: executing libtool commands make all-recursive make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/vdifio' Making all in src make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/vdifio/src' make[2]: Nothing to be done for `all'. make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/vdifio/src' Making all in utils make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/vdifio/utils' make[2]: Nothing to be done for `all'. make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/vdifio/utils' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/vdifio' make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/vdifio' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/vdifio' Making install in src make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/vdifio/src' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/vdifio/src' /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/lib' /bin/sh ../libtool --mode=install /usr/bin/install -c libvdifio.la '/home/AstroSoft/DiFX2.4.1/lib' libtool: install: /usr/bin/install -c .libs/libvdifio.so.0.0.0 /home/AstroSoft/DiFX2.4.1/lib/libvdifio.so.0.0.0 libtool: install: (cd /home/AstroSoft/DiFX2.4.1/lib && { ln -s -f libvdifio.so.0.0.0 libvdifio.so.0 || { rm -f libvdifio.so.0 && ln -s libvdifio.so.0.0.0 libvdifio.so.0; }; }) libtool: install: (cd /home/AstroSoft/DiFX2.4.1/lib && { ln -s -f libvdifio.so.0.0.0 libvdifio.so || { rm -f libvdifio.so && ln -s libvdifio.so.0.0.0 libvdifio.so; }; }) libtool: install: /usr/bin/install -c .libs/libvdifio.lai /home/AstroSoft/DiFX2.4.1/lib/libvdifio.la libtool: install: /usr/bin/install -c .libs/libvdifio.a /home/AstroSoft/DiFX2.4.1/lib/libvdifio.a libtool: install: chmod 644 /home/AstroSoft/DiFX2.4.1/lib/libvdifio.a libtool: install: ranlib /home/AstroSoft/DiFX2.4.1/lib/libvdifio.a libtool: finish: PATH="/home/AstroSoft/DiFX2.4.1/bin:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin:/opt/casa/casa-release-4.7.0-1-el7/bin:/sbin" ldconfig -n /home/AstroSoft/DiFX2.4.1/lib ---------------------------------------------------------------------- Libraries have been installed in: /home/AstroSoft/DiFX2.4.1/lib
If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf'
See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/include' /usr/bin/install -c -m 644 vdifio.h '/home/AstroSoft/DiFX2.4.1/include' make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/vdifio/src' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/vdifio/src' Making install in utils make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/vdifio/utils' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/vdifio/utils' /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/bin' /bin/sh ../libtool --mode=install /usr/bin/install -c stripVDIF captureUDPVDIF multi2singlethreadVDIF padVDIF cleanVDIF fakemultiVDIF extractSingleVDIFThread extractVDIFThreads countVDIFPackets printVDIF printVDIFgaps printVDIFheader peekVDIF searchVDIF vdif2to8 vmux vsum '/home/AstroSoft/DiFX2.4.1/bin' libtool: install: /usr/bin/install -c .libs/stripVDIF /home/AstroSoft/DiFX2.4.1/bin/stripVDIF libtool: install: /usr/bin/install -c .libs/captureUDPVDIF /home/AstroSoft/DiFX2.4.1/bin/captureUDPVDIF libtool: install: /usr/bin/install -c .libs/multi2singlethreadVDIF /home/AstroSoft/DiFX2.4.1/bin/multi2singlethreadVDIF libtool: install: /usr/bin/install -c .libs/padVDIF /home/AstroSoft/DiFX2.4.1/bin/padVDIF libtool: install: /usr/bin/install -c .libs/cleanVDIF /home/AstroSoft/DiFX2.4.1/bin/cleanVDIF libtool: install: /usr/bin/install -c .libs/fakemultiVDIF /home/AstroSoft/DiFX2.4.1/bin/fakemultiVDIF libtool: install: /usr/bin/install -c .libs/extractSingleVDIFThread /home/AstroSoft/DiFX2.4.1/bin/extractSingleVDIFThread libtool: install: /usr/bin/install -c .libs/extractVDIFThreads /home/AstroSoft/DiFX2.4.1/bin/extractVDIFThreads libtool: install: /usr/bin/install -c .libs/countVDIFPackets /home/AstroSoft/DiFX2.4.1/bin/countVDIFPackets libtool: install: /usr/bin/install -c .libs/printVDIF /home/AstroSoft/DiFX2.4.1/bin/printVDIF libtool: install: /usr/bin/install -c .libs/printVDIFgaps /home/AstroSoft/DiFX2.4.1/bin/printVDIFgaps libtool: install: /usr/bin/install -c .libs/printVDIFheader /home/AstroSoft/DiFX2.4.1/bin/printVDIFheader libtool: install: /usr/bin/install -c .libs/peekVDIF /home/AstroSoft/DiFX2.4.1/bin/peekVDIF libtool: install: /usr/bin/install -c .libs/searchVDIF /home/AstroSoft/DiFX2.4.1/bin/searchVDIF libtool: install: /usr/bin/install -c .libs/vdif2to8 /home/AstroSoft/DiFX2.4.1/bin/vdif2to8 libtool: install: /usr/bin/install -c .libs/vmux /home/AstroSoft/DiFX2.4.1/bin/vmux libtool: install: /usr/bin/install -c .libs/vsum /home/AstroSoft/DiFX2.4.1/bin/vsum /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/bin' /usr/bin/install -c vdifbstate vdiffold vdifd vdifspec '/home/AstroSoft/DiFX2.4.1/bin' make[2]: Nothing to be done for `install-data-am'. make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/vdifio/utils' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/vdifio/utils' make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/vdifio' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/vdifio' make[2]: Nothing to be done for `install-exec-am'. /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/lib/pkgconfig' /usr/bin/install -c -m 644 vdifio.pc '/home/AstroSoft/DiFX2.4.1/lib/pkgconfig' make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/vdifio' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/libraries/vdifio'
************************************ Making mpifxcorr
Reconfiguring mpifxcorr checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /usr/bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking whether the C++ compiler works... yes checking for C++ compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C++ compiler... yes checking whether /home/AstroSoft/mpich/bin/mpicxx accepts -g... yes checking for style of include used by make... GNU checking dependency style of /home/AstroSoft/mpich/bin/mpicxx... gcc3 ./configure: line 3430: AX_OPENMP: command not found checking for ranlib... ranlib checking how to run the C++ preprocessor... /home/AstroSoft/mpich/bin/mpicxx -E checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking whether byte ordering is bigendian... no checking for pkg-config... /usr/bin/pkg-config checking pkg-config is at least version 0.9.0... yes checking for IPP... yes checking for pthread_create in -lpthread... yes checking for DIFXMESSAGE... yes checking for VDIFIO... yes checking for MARK5IPC... yes configure: Did not find STREAMSTOR in /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/pkgconfig:/home/AstroSoft/DiFX2.4.1/lib/pkgconfig No suitable streamstor.pc file was found so the native Mark5 support will be suppressed. See the documentation if you are surprised by this. checking for M5ACCESS... yes checking for clock_gettime in -lrt... yes CXXFLAGS = -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include LIBS = -L/home/AstroSoft/DiFX2.4.1/lib -lmark5access -L/home/AstroSoft/DiFX2.4.1/lib -lvdifio -Wl,-rpath,/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/sharedlib -L/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/sharedlib -lippsem64t -lguide -lippvmem64t -lippcoreem64t -lpthread -L/home/AstroSoft/DiFX2.4.1/lib -ldifxmessage -L/home/AstroSoft/DiFX2.4.1/lib -lmark5ipc -lrt -lpthread checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: creating mpifxcorr.pc config.status: creating fxcorr.pc config.status: creating src/Makefile config.status: creating src/architecture.h config.status: creating scripts/Makefile config.status: creating utils/Makefile config.status: creating config.h config.status: executing depfiles commands make all-recursive make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr' Making all in src make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src' /home/AstroSoft/mpich/bin/mpicxx -DHAVE_CONFIG_H -I. -I.. -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT pcal.o -MD -MP -MF .deps/pcal.Tpo -c -o pcal.o pcal.cpp mv -f .deps/pcal.Tpo .deps/pcal.Po /home/AstroSoft/mpich/bin/mpicxx -DHAVE_CONFIG_H -I. -I.. -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT configuration.o -MD -MP -MF .deps/configuration.Tpo -c -o configuration.o configuration.cpp configuration.cpp:2937:16: warning: multi-character character constant [-Wmultichar] if(sync != 'BASE') ^ mv -f .deps/configuration.Tpo .deps/configuration.Po /home/AstroSoft/mpich/bin/mpicxx -DHAVE_CONFIG_H -I. -I.. -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT mode.o -MD -MP -MF .deps/mode.Tpo -c -o mode.o mode.cpp mv -f .deps/mode.Tpo .deps/mode.Po /home/AstroSoft/mpich/bin/mpicxx -DHAVE_CONFIG_H -I. -I.. -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT core.o -MD -MP -MF .deps/core.Tpo -c -o core.o core.cpp mv -f .deps/core.Tpo .deps/core.Po /home/AstroSoft/mpich/bin/mpicxx -DHAVE_CONFIG_H -I. -I.. -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT datastream.o -MD -MP -MF .deps/datastream.Tpo -c -o datastream.o datastream.cpp mv -f .deps/datastream.Tpo .deps/datastream.Po /home/AstroSoft/mpich/bin/mpicxx -DHAVE_CONFIG_H -I. -I.. -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT polyco.o -MD -MP -MF .deps/polyco.Tpo -c -o polyco.o polyco.cpp mv -f .deps/polyco.Tpo .deps/polyco.Po /home/AstroSoft/mpich/bin/mpicxx -DHAVE_CONFIG_H -I. -I.. -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT mk5.o -MD -MP -MF .deps/mk5.Tpo -c -o mk5.o mk5.cpp mk5.cpp:805:2: warning: #warning "WFB: The next statement is fishy to me. Shouldn't this be the actual number of bytes memcpyed" [-Wcpp] #warning "WFB: The next statement is fishy to me. Shouldn't this be the actual number of bytes memcpyed" ^ mk5.cpp:879:2: warning: #warning "WFB: This next statement is fishy to me: what if some leftover bytes were copied? That count gets lost." [-Wcpp] #warning "WFB: This next statement is fishy to me: what if some leftover bytes were copied? That count gets lost." ^ mv -f .deps/mk5.Tpo .deps/mk5.Po /home/AstroSoft/mpich/bin/mpicxx -DHAVE_CONFIG_H -I. -I.. -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT mk5mode.o -MD -MP -MF .deps/mk5mode.Tpo -c -o mk5mode.o mk5mode.cpp mv -f .deps/mk5mode.Tpo .deps/mk5mode.Po /home/AstroSoft/mpich/bin/mpicxx -DHAVE_CONFIG_H -I. -I.. -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT fxmanager.o -MD -MP -MF .deps/fxmanager.Tpo -c -o fxmanager.o fxmanager.cpp mv -f .deps/fxmanager.Tpo .deps/fxmanager.Po /home/AstroSoft/mpich/bin/mpicxx -DHAVE_CONFIG_H -I. -I.. -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT model.o -MD -MP -MF .deps/model.Tpo -c -o model.o model.cpp mv -f .deps/model.Tpo .deps/model.Po /home/AstroSoft/mpich/bin/mpicxx -DHAVE_CONFIG_H -I. -I.. -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT visibility.o -MD -MP -MF .deps/visibility.Tpo -c -o visibility.o visibility.cpp mv -f .deps/visibility.Tpo .deps/visibility.Po /home/AstroSoft/mpich/bin/mpicxx -DHAVE_CONFIG_H -I. -I.. -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT alert.o -MD -MP -MF .deps/alert.Tpo -c -o alert.o alert.cpp mv -f .deps/alert.Tpo .deps/alert.Po /home/AstroSoft/mpich/bin/mpicxx -DHAVE_CONFIG_H -I. -I.. -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT switchedpower.o -MD -MP -MF .deps/switchedpower.Tpo -c -o switchedpower.o switchedpower.cpp mv -f .deps/switchedpower.Tpo .deps/switchedpower.Po /home/AstroSoft/mpich/bin/mpicxx -DHAVE_CONFIG_H -I. -I.. -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT mark5bfile.o -MD -MP -MF .deps/mark5bfile.Tpo -c -o mark5bfile.o mark5bfile.cpp mv -f .deps/mark5bfile.Tpo .deps/mark5bfile.Po /home/AstroSoft/mpich/bin/mpicxx -DHAVE_CONFIG_H -I. -I.. -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT vdiffile.o -MD -MP -MF .deps/vdiffile.Tpo -c -o vdiffile.o vdiffile.cpp mv -f .deps/vdiffile.Tpo .deps/vdiffile.Po /home/AstroSoft/mpich/bin/mpicxx -DHAVE_CONFIG_H -I. -I.. -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT vdiffake.o -MD -MP -MF .deps/vdiffake.Tpo -c -o vdiffake.o vdiffake.cpp mv -f .deps/vdiffake.Tpo .deps/vdiffake.Po /home/AstroSoft/mpich/bin/mpicxx -DHAVE_CONFIG_H -I. -I.. -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT vdifnetwork.o -MD -MP -MF .deps/vdifnetwork.Tpo -c -o vdifnetwork.o vdifnetwork.cpp mv -f .deps/vdifnetwork.Tpo .deps/vdifnetwork.Po /home/AstroSoft/mpich/bin/mpicxx -DHAVE_CONFIG_H -I. -I.. -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT datamuxer.o -MD -MP -MF .deps/datamuxer.Tpo -c -o datamuxer.o datamuxer.cpp mv -f .deps/datamuxer.Tpo .deps/datamuxer.Po /home/AstroSoft/mpich/bin/mpicxx -DHAVE_CONFIG_H -I. -I.. -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT nativemk5_stubs.o -MD -MP -MF .deps/nativemk5_stubs.Tpo -c -o nativemk5_stubs.o nativemk5_stubs.cpp mv -f .deps/nativemk5_stubs.Tpo .deps/nativemk5_stubs.Po /home/AstroSoft/mpich/bin/mpicxx -DHAVE_CONFIG_H -I. -I.. -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT mark5bmark5_stubs.o -MD -MP -MF .deps/mark5bmark5_stubs.Tpo -c -o mark5bmark5_stubs.o mark5bmark5_stubs.cpp mv -f .deps/mark5bmark5_stubs.Tpo .deps/mark5bmark5_stubs.Po /home/AstroSoft/mpich/bin/mpicxx -DHAVE_CONFIG_H -I. -I.. -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT vdifmark5_stubs.o -MD -MP -MF .deps/vdifmark5_stubs.Tpo -c -o vdifmark5_stubs.o vdifmark5_stubs.cpp mv -f .deps/vdifmark5_stubs.Tpo .deps/vdifmark5_stubs.Po rm -f libmpifxcorr.a ar cru libmpifxcorr.a pcal.o configuration.o mode.o core.o datastream.o polyco.o mk5.o mk5mode.o fxmanager.o model.o visibility.o alert.o switchedpower.o mark5bfile.o vdiffile.o vdiffake.o vdifnetwork.o datamuxer.o nativemk5_stubs.o mark5bmark5_stubs.o vdifmark5_stubs.o ranlib libmpifxcorr.a rm -f libfxcorr.a ar cru libfxcorr.a configuration.o pcal.o mode.o mk5mode.o polyco.o visibility.o model.o datamuxer.o alert.o ranlib libfxcorr.a /home/AstroSoft/mpich/bin/mpicxx -DHAVE_CONFIG_H -I. -I.. -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT mpifxcorr.o -MD -MP -MF .deps/mpifxcorr.Tpo -c -o mpifxcorr.o mpifxcorr.cpp mv -f .deps/mpifxcorr.Tpo .deps/mpifxcorr.Po /home/AstroSoft/mpich/bin/mpicxx -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -o mpifxcorr mpifxcorr.o fxmanager.o core.o datastream.o visibility.o configuration.o mode.o model.o mk5.o mk5mode.o datamuxer.o mark5bfile.o vdiffile.o vdiffake.o vdifnetwork.o polyco.o alert.o pcal.o switchedpower.o nativemk5_stubs.o mark5bmark5_stubs.o vdifmark5_stubs.o -L/home/AstroSoft/DiFX2.4.1/lib -lmark5access -L/home/AstroSoft/DiFX2.4.1/lib -lvdifio -Wl,-rpath,/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/sharedlib -L/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/sharedlib -lippsem64t -lguide -lippvmem64t -lippcoreem64t -lpthread -L/home/AstroSoft/DiFX2.4.1/lib -ldifxmessage -L/home/AstroSoft/DiFX2.4.1/lib -lmark5ipc -lrt -lpthread /home/AstroSoft/mpich/bin/mpicxx -DHAVE_CONFIG_H -I. -I.. -DNEUTERED_DIFX -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT neuteredmpifxcorr-mpifxcorr.o -MD -MP -MF .deps/neuteredmpifxcorr-mpifxcorr.Tpo -c -o neuteredmpifxcorr-mpifxcorr.o `test -f 'mpifxcorr.cpp' || echo './'`mpifxcorr.cpp mv -f .deps/neuteredmpifxcorr-mpifxcorr.Tpo .deps/neuteredmpifxcorr-mpifxcorr.Po /home/AstroSoft/mpich/bin/mpicxx -DHAVE_CONFIG_H -I. -I.. -DNEUTERED_DIFX -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT neuteredmpifxcorr-fxmanager.o -MD -MP -MF .deps/neuteredmpifxcorr-fxmanager.Tpo -c -o neuteredmpifxcorr-fxmanager.o `test -f 'fxmanager.cpp' || echo './'`fxmanager.cpp mv -f .deps/neuteredmpifxcorr-fxmanager.Tpo .deps/neuteredmpifxcorr-fxmanager.Po /home/AstroSoft/mpich/bin/mpicxx -DHAVE_CONFIG_H -I. -I.. -DNEUTERED_DIFX -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT neuteredmpifxcorr-core.o -MD -MP -MF .deps/neuteredmpifxcorr-core.Tpo -c -o neuteredmpifxcorr-core.o `test -f 'core.cpp' || echo './'`core.cpp mv -f .deps/neuteredmpifxcorr-core.Tpo .deps/neuteredmpifxcorr-core.Po /home/AstroSoft/mpich/bin/mpicxx -DHAVE_CONFIG_H -I. -I.. -DNEUTERED_DIFX -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT neuteredmpifxcorr-datastream.o -MD -MP -MF .deps/neuteredmpifxcorr-datastream.Tpo -c -o neuteredmpifxcorr-datastream.o `test -f 'datastream.cpp' || echo './'`datastream.cpp mv -f .deps/neuteredmpifxcorr-datastream.Tpo .deps/neuteredmpifxcorr-datastream.Po /home/AstroSoft/mpich/bin/mpicxx -DHAVE_CONFIG_H -I. -I.. -DNEUTERED_DIFX -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT neuteredmpifxcorr-mk5.o -MD -MP -MF .deps/neuteredmpifxcorr-mk5.Tpo -c -o neuteredmpifxcorr-mk5.o `test -f 'mk5.cpp' || echo './'`mk5.cpp mk5.cpp:805:2: warning: #warning "WFB: The next statement is fishy to me. Shouldn't this be the actual number of bytes memcpyed" [-Wcpp] #warning "WFB: The next statement is fishy to me. Shouldn't this be the actual number of bytes memcpyed" ^ mk5.cpp:879:2: warning: #warning "WFB: This next statement is fishy to me: what if some leftover bytes were copied? That count gets lost." [-Wcpp] #warning "WFB: This next statement is fishy to me: what if some leftover bytes were copied? That count gets lost." ^ mv -f .deps/neuteredmpifxcorr-mk5.Tpo .deps/neuteredmpifxcorr-mk5.Po /home/AstroSoft/mpich/bin/mpicxx -DHAVE_CONFIG_H -I. -I.. -DNEUTERED_DIFX -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT neuteredmpifxcorr-switchedpower.o -MD -MP -MF .deps/neuteredmpifxcorr-switchedpower.Tpo -c -o neuteredmpifxcorr-switchedpower.o `test -f 'switchedpower.cpp' || echo './'`switchedpower.cpp mv -f .deps/neuteredmpifxcorr-switchedpower.Tpo .deps/neuteredmpifxcorr-switchedpower.Po /home/AstroSoft/mpich/bin/mpicxx -DHAVE_CONFIG_H -I. -I.. -DNEUTERED_DIFX -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT neuteredmpifxcorr-mark5bfile.o -MD -MP -MF .deps/neuteredmpifxcorr-mark5bfile.Tpo -c -o neuteredmpifxcorr-mark5bfile.o `test -f 'mark5bfile.cpp' || echo './'`mark5bfile.cpp mv -f .deps/neuteredmpifxcorr-mark5bfile.Tpo .deps/neuteredmpifxcorr-mark5bfile.Po /home/AstroSoft/mpich/bin/mpicxx -DHAVE_CONFIG_H -I. -I.. -DNEUTERED_DIFX -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT neuteredmpifxcorr-vdiffile.o -MD -MP -MF .deps/neuteredmpifxcorr-vdiffile.Tpo -c -o neuteredmpifxcorr-vdiffile.o `test -f 'vdiffile.cpp' || echo './'`vdiffile.cpp mv -f .deps/neuteredmpifxcorr-vdiffile.Tpo .deps/neuteredmpifxcorr-vdiffile.Po /home/AstroSoft/mpich/bin/mpicxx -DHAVE_CONFIG_H -I. -I.. -DNEUTERED_DIFX -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT neuteredmpifxcorr-vdiffake.o -MD -MP -MF .deps/neuteredmpifxcorr-vdiffake.Tpo -c -o neuteredmpifxcorr-vdiffake.o `test -f 'vdiffake.cpp' || echo './'`vdiffake.cpp mv -f .deps/neuteredmpifxcorr-vdiffake.Tpo .deps/neuteredmpifxcorr-vdiffake.Po /home/AstroSoft/mpich/bin/mpicxx -DHAVE_CONFIG_H -I. -I.. -DNEUTERED_DIFX -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT neuteredmpifxcorr-vdifnetwork.o -MD -MP -MF .deps/neuteredmpifxcorr-vdifnetwork.Tpo -c -o neuteredmpifxcorr-vdifnetwork.o `test -f 'vdifnetwork.cpp' || echo './'`vdifnetwork.cpp mv -f .deps/neuteredmpifxcorr-vdifnetwork.Tpo .deps/neuteredmpifxcorr-vdifnetwork.Po /home/AstroSoft/mpich/bin/mpicxx -DHAVE_CONFIG_H -I. -I.. -DNEUTERED_DIFX -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT neuteredmpifxcorr-datamuxer.o -MD -MP -MF .deps/neuteredmpifxcorr-datamuxer.Tpo -c -o neuteredmpifxcorr-datamuxer.o `test -f 'datamuxer.cpp' || echo './'`datamuxer.cpp mv -f .deps/neuteredmpifxcorr-datamuxer.Tpo .deps/neuteredmpifxcorr-datamuxer.Po /home/AstroSoft/mpich/bin/mpicxx -DHAVE_CONFIG_H -I. -I.. -DNEUTERED_DIFX -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT neuteredmpifxcorr-nativemk5_stubs.o -MD -MP -MF .deps/neuteredmpifxcorr-nativemk5_stubs.Tpo -c -o neuteredmpifxcorr-nativemk5_stubs.o `test -f 'nativemk5_stubs.cpp' || echo './'`nativemk5_stubs.cpp mv -f .deps/neuteredmpifxcorr-nativemk5_stubs.Tpo .deps/neuteredmpifxcorr-nativemk5_stubs.Po /home/AstroSoft/mpich/bin/mpicxx -DHAVE_CONFIG_H -I. -I.. -DNEUTERED_DIFX -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT neuteredmpifxcorr-mark5bmark5_stubs.o -MD -MP -MF .deps/neuteredmpifxcorr-mark5bmark5_stubs.Tpo -c -o neuteredmpifxcorr-mark5bmark5_stubs.o `test -f 'mark5bmark5_stubs.cpp' || echo './'`mark5bmark5_stubs.cpp mv -f .deps/neuteredmpifxcorr-mark5bmark5_stubs.Tpo .deps/neuteredmpifxcorr-mark5bmark5_stubs.Po /home/AstroSoft/mpich/bin/mpicxx -DHAVE_CONFIG_H -I. -I.. -DNEUTERED_DIFX -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT neuteredmpifxcorr-vdifmark5_stubs.o -MD -MP -MF .deps/neuteredmpifxcorr-vdifmark5_stubs.Tpo -c -o neuteredmpifxcorr-vdifmark5_stubs.o `test -f 'vdifmark5_stubs.cpp' || echo './'`vdifmark5_stubs.cpp mv -f .deps/neuteredmpifxcorr-vdifmark5_stubs.Tpo .deps/neuteredmpifxcorr-vdifmark5_stubs.Po /home/AstroSoft/mpich/bin/mpicxx -DNEUTERED_DIFX -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -o neuteredmpifxcorr neuteredmpifxcorr-mpifxcorr.o neuteredmpifxcorr-fxmanager.o neuteredmpifxcorr-core.o neuteredmpifxcorr-datastream.o neuteredmpifxcorr-mk5.o neuteredmpifxcorr-switchedpower.o neuteredmpifxcorr-mark5bfile.o neuteredmpifxcorr-vdiffile.o neuteredmpifxcorr-vdiffake.o neuteredmpifxcorr-vdifnetwork.o neuteredmpifxcorr-datamuxer.o neuteredmpifxcorr-nativemk5_stubs.o neuteredmpifxcorr-mark5bmark5_stubs.o neuteredmpifxcorr-vdifmark5_stubs.o ../src/libfxcorr.a -L/home/AstroSoft/DiFX2.4.1/lib -lmark5access -L/home/AstroSoft/DiFX2.4.1/lib -lvdifio -Wl,-rpath,/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/sharedlib -L/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/sharedlib -lippsem64t -lguide -lippvmem64t -lippcoreem64t -lpthread -L/home/AstroSoft/DiFX2.4.1/lib -ldifxmessage -L/home/AstroSoft/DiFX2.4.1/lib -lmark5ipc -lrt -lpthread make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src' Making all in scripts make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/scripts' make[2]: Nothing to be done for `all'. make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/scripts' Making all in utils make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/utils' /home/AstroSoft/mpich/bin/mpicxx -DHAVE_CONFIG_H -I. -I.. -I./../src/ -I../src/ -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT checkmpifxcorr.o -MD -MP -MF .deps/checkmpifxcorr.Tpo -c -o checkmpifxcorr.o checkmpifxcorr.cpp mv -f .deps/checkmpifxcorr.Tpo .deps/checkmpifxcorr.Po /home/AstroSoft/mpich/bin/mpicxx -I./../src/ -I../src/ -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -o checkmpifxcorr checkmpifxcorr.o ../src/libmpifxcorr.a -L/home/AstroSoft/DiFX2.4.1/lib -lmark5access -L/home/AstroSoft/DiFX2.4.1/lib -lvdifio -Wl,-rpath,/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/sharedlib -L/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/sharedlib -lippsem64t -lguide -lippvmem64t -lippcoreem64t -lpthread -L/home/AstroSoft/DiFX2.4.1/lib -ldifxmessage -L/home/AstroSoft/DiFX2.4.1/lib -lmark5ipc -lrt -lpthread /home/AstroSoft/mpich/bin/mpicxx -DHAVE_CONFIG_H -I. -I.. -I./../src/ -I../src/ -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT dedisperse_difx.o -MD -MP -MF .deps/dedisperse_difx.Tpo -c -o dedisperse_difx.o dedisperse_difx.cpp mv -f .deps/dedisperse_difx.Tpo .deps/dedisperse_difx.Po /home/AstroSoft/mpich/bin/mpicxx -I./../src/ -I../src/ -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -o dedisperse_difx dedisperse_difx.o ../src/libmpifxcorr.a -L/home/AstroSoft/DiFX2.4.1/lib -lmark5access -L/home/AstroSoft/DiFX2.4.1/lib -lvdifio -Wl,-rpath,/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/sharedlib -L/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/sharedlib -lippsem64t -lguide -lippvmem64t -lippcoreem64t -lpthread -L/home/AstroSoft/DiFX2.4.1/lib -ldifxmessage -L/home/AstroSoft/DiFX2.4.1/lib -lmark5ipc -lrt -lpthread /home/AstroSoft/mpich/bin/mpicxx -DHAVE_CONFIG_H -I. -I.. -I./../src/ -I../src/ -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT mpispeed.o -MD -MP -MF .deps/mpispeed.Tpo -c -o mpispeed.o mpispeed.cpp mv -f .deps/mpispeed.Tpo .deps/mpispeed.Po /home/AstroSoft/mpich/bin/mpicxx -I./../src/ -I../src/ -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/vdifio -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -o mpispeed mpispeed.o -L/home/AstroSoft/DiFX2.4.1/lib -lmark5access -L/home/AstroSoft/DiFX2.4.1/lib -lvdifio -Wl,-rpath,/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/sharedlib -L/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/sharedlib -lippsem64t -lguide -lippvmem64t -lippcoreem64t -lpthread -L/home/AstroSoft/DiFX2.4.1/lib -ldifxmessage -L/home/AstroSoft/DiFX2.4.1/lib -lmark5ipc -lrt -lpthread make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/utils' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr' make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr' Making install in src make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src' /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/bin' /usr/bin/install -c mpifxcorr neuteredmpifxcorr '/home/AstroSoft/DiFX2.4.1/bin' /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/lib' /usr/bin/install -c -m 644 libmpifxcorr.a libfxcorr.a '/home/AstroSoft/DiFX2.4.1/lib' ( cd '/home/AstroSoft/DiFX2.4.1/lib' && ranlib libmpifxcorr.a ) ( cd '/home/AstroSoft/DiFX2.4.1/lib' && ranlib libfxcorr.a ) /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/include' /usr/bin/install -c -m 644 fxmanager.h pcal.h core.h datastream.h architecture.h visibility.h configuration.h mk5.h mk5mode.h model.h mode.h polyco.h mark5dir.h nativemk5.h watchdog.h mark5utils.h mpifxcorr.h switchedpower.h datamuxer.h mark5bfile.h vdiffile.h vdiffake.h vdifnetwork.h alert.h '/home/AstroSoft/DiFX2.4.1/include' /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/include/mpifxcorr' /usr/bin/install -c -m 644 fxmanager.h pcal.h core.h datastream.h architecture.h visibility.h configuration.h mk5.h mk5mode.h model.h mode.h polyco.h mark5dir.h nativemk5.h watchdog.h mark5utils.h mpifxcorr.h switchedpower.h datamuxer.h mark5bfile.h vdiffile.h vdiffake.h vdifnetwork.h alert.h '/home/AstroSoft/DiFX2.4.1/include/mpifxcorr' make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src' Making install in scripts make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/scripts' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/scripts' /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/bin' /usr/bin/install -c stopmpifxcorr '/home/AstroSoft/DiFX2.4.1/bin' make[2]: Nothing to be done for `install-data-am'. make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/scripts' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/scripts' Making install in utils make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/utils' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/utils' /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/bin' /usr/bin/install -c checkmpifxcorr dedisperse_difx mpispeed '/home/AstroSoft/DiFX2.4.1/bin' make[2]: Nothing to be done for `install-data-am'. make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/utils' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/utils' make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr' make[2]: Nothing to be done for `install-exec-am'. /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/lib/pkgconfig' /usr/bin/install -c -m 644 mpifxcorr.pc fxcorr.pc '/home/AstroSoft/DiFX2.4.1/lib/pkgconfig' make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr'
************************************ Building calcserver
libtoolize: putting auxiliary files in `.'. libtoolize: copying file `./ltmain.sh' libtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.ac and libtoolize: rerunning libtoolize, to keep the correct libtool macros in-tree. libtoolize: Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am. configure.ac:3: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see: configure.ac:3: http: checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /usr/bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking for style of include used by make... GNU checking dependency style of gcc... gcc3 checking whether build environment is sane... yes checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... gfortran checking whether we are using the GNU Fortran 77 compiler... yes checking whether gfortran accepts -g... yes checking build system type... x86_64-unknown-linux-gnu checking host system type... x86_64-unknown-linux-gnu checking how to print strings... printf checking for a sed that does not truncate output... /usr/bin/sed checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for fgrep... /usr/bin/grep -F checking for ld used by gcc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop checking for /usr/bin/ld option to reload object files... -r checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for dlltool... no checking how to associate runtime and link libraries... printf %s\n checking for ar... ar checking for archiver @FILE support... @ checking for strip... strip checking for ranlib... ranlib checking command to parse /usr/bin/nm -B output from gcc object... ok checking for sysroot... no checking for mt... no checking if : is a manifest tool... no checking how to run the C preprocessor... gcc -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking for dlfcn.h... yes checking for objdir... .libs checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... yes checking if gcc static flag -static works... no checking if gcc supports -c -o file.o... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking for gfortran option to produce PIC... -fPIC checking if gfortran PIC flag -fPIC works... yes checking if gfortran static flag -static works... no checking if gfortran supports -c -o file.o... yes checking if gfortran supports -c -o file.o... (cached) yes checking whether the gfortran linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for sin in -lm... yes checking that generated files are newer than configure... done checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: creating startCalcServer config.status: creating src/Makefile config.status: creating calc9.1/Makefile config.status: creating init.d/calcserver config.status: creating data/Makefile config.status: executing depfiles commands config.status: executing libtool commands Making all in calc9.1 make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcserver/calc9.1' make[1]: Nothing to be done for `all'. make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcserver/calc9.1' Making all in src make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcserver/src' gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_LIBM=1 -I. -g -O2 -MT CALC5Server.o -MD -MP -MF .deps/CALC5Server.Tpo -c -o CALC5Server.o CALC5Server.c CALC5Server.c: In function ‘calcprog_1’: CALC5Server.c:333:2: warning: passing argument 2 of ‘svc_sendreply’ from incompatible pointer type [enabled by default] if (!svc_sendreply (pTransport, xdr_void, NULL)) ^ In file included from /usr/include/rpc/rpc.h:56:0, from CALC5Server.c:3: /usr/include/rpc/svc.h:244:15: note: expected ‘xdrproc_t’ but argument is of type ‘bool_t (*)(void)’ extern bool_t svc_sendreply (SVCXPRT *__xprt, xdrproc_t __xdr_results, ^ CALC5Server.c:347:5: warning: passing argument 2 of ‘pTransport->xp_ops->xp_getargs’ from incompatible pointer type [enabled by default] if (!svc_getargs (pTransport, xdr_getCALC_arg, (char *)&argument)) ^ CALC5Server.c:347:5: note: expected ‘xdrproc_t’ but argument is of type ‘bool_t (*)()’ CALC5Server.c:483:5: warning: passing argument 2 of ‘svc_sendreply’ from incompatible pointer type [enabled by default] if (!svc_sendreply (pTransport, xdr_getCALC_res, (char *)&result)) ^ In file included from /usr/include/rpc/rpc.h:56:0, from CALC5Server.c:3: /usr/include/rpc/svc.h:244:15: note: expected ‘xdrproc_t’ but argument is of type ‘bool_t (*)()’ extern bool_t svc_sendreply (SVCXPRT *__xprt, xdrproc_t __xdr_results, ^ CALC5Server.c:487:5: warning: passing argument 2 of ‘pTransport->xp_ops->xp_freeargs’ from incompatible pointer type [enabled by default] if (!svc_freeargs (pTransport, xdr_getCALC_arg, (char *)&argument)) ^ CALC5Server.c:487:5: note: expected ‘xdrproc_t’ but argument is of type ‘bool_t (*)()’ mv -f .deps/CALC5Server.Tpo .deps/CALC5Server.Po gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_LIBM=1 -I. -g -O2 -MT CALC_xdr.o -MD -MP -MF .deps/CALC_xdr.Tpo -c -o CALC_xdr.o CALC_xdr.c mv -f .deps/CALC_xdr.Tpo .deps/CALC_xdr.Po gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_LIBM=1 -I. -g -O2 -MT ingdec.o -MD -MP -MF .deps/ingdec.Tpo -c -o ingdec.o ingdec.c mv -f .deps/ingdec.Tpo .deps/ingdec.Po gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_LIBM=1 -I. -g -O2 -MT ingra.o -MD -MP -MF .deps/ingra.Tpo -c -o ingra.o ingra.c mv -f .deps/ingra.Tpo .deps/ingra.Po gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_LIBM=1 -I. -g -O2 -MT iword.o -MD -MP -MF .deps/iword.Tpo -c -o iword.o iword.c mv -f .deps/iword.Tpo .deps/iword.Po gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_LIBM=1 -I. -g -O2 -MT mjd2str.o -MD -MP -MF .deps/mjd2str.Tpo -c -o mjd2str.o mjd2str.c mv -f .deps/mjd2str.Tpo .deps/mjd2str.Po gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_LIBM=1 -I. -g -O2 -MT time2str.o -MD -MP -MF .deps/time2str.Tpo -c -o time2str.o time2str.c mv -f .deps/time2str.Tpo .deps/time2str.Po /bin/sh ../libtool --tag=CC --mode=link gcc -g -O2 -o CalcServer CALC5Server.o CALC_xdr.o cvrtuc.o ingdec.o ingra.o iword.o mjd2str.o sindex.o time2str.o ../calc9.1/libCalc.la -lm libtool: link: gcc -g -O2 -o .libs/CalcServer CALC5Server.o CALC_xdr.o cvrtuc.o ingdec.o ingra.o iword.o mjd2str.o sindex.o time2str.o ../calc9.1/.libs/libCalc.so -lm -Wl,-rpath -Wl,/opt/DiFX-2.4/lib gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_LIBM=1 -I. -g -O2 -MT checkcalc.o -MD -MP -MF .deps/checkcalc.Tpo -c -o checkcalc.o checkcalc.c mv -f .deps/checkcalc.Tpo .deps/checkcalc.Po /bin/sh ../libtool --tag=CC --mode=link gcc -g -O2 -o checkCalcServer checkcalc.o CALC_xdr.o -lm libtool: link: gcc -g -O2 -o checkCalcServer checkcalc.o CALC_xdr.o -lm make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcserver/src' Making all in data make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcserver/data' make[1]: Nothing to be done for `all'. make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcserver/data' make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcserver' make[1]: Nothing to be done for `all-am'. make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcserver' Making install in calc9.1 make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcserver/calc9.1' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcserver/calc9.1' /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/lib' /bin/sh ../libtool --mode=install /usr/bin/install -c libCalc.la '/home/AstroSoft/DiFX2.4.1/lib' libtool: install: /usr/bin/install -c .libs/libCalc-9.1.so /home/AstroSoft/DiFX2.4.1/lib/libCalc-9.1.so libtool: install: (cd /home/AstroSoft/DiFX2.4.1/lib && { ln -s -f libCalc-9.1.so libCalc.so || { rm -f libCalc.so && ln -s libCalc-9.1.so libCalc.so; }; }) libtool: install: /usr/bin/install -c .libs/libCalc.lai /home/AstroSoft/DiFX2.4.1/lib/libCalc.la libtool: install: /usr/bin/install -c .libs/libCalc.a /home/AstroSoft/DiFX2.4.1/lib/libCalc.a libtool: install: chmod 644 /home/AstroSoft/DiFX2.4.1/lib/libCalc.a libtool: install: ranlib /home/AstroSoft/DiFX2.4.1/lib/libCalc.a libtool: install: warning: remember to run `libtool --finish /opt/DiFX-2.4/lib' make[2]: Nothing to be done for `install-data-am'. make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcserver/calc9.1' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcserver/calc9.1' Making install in src make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcserver/src' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcserver/src' /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/bin' /bin/sh ../libtool --mode=install /usr/bin/install -c CalcServer checkCalcServer '/home/AstroSoft/DiFX2.4.1/bin' libtool: install: warning: `../calc9.1/libCalc.la' has not been installed in `/opt/DiFX-2.4/lib' libtool: install: /usr/bin/install -c .libs/CalcServer /home/AstroSoft/DiFX2.4.1/bin/CalcServer libtool: install: /usr/bin/install -c checkCalcServer /home/AstroSoft/DiFX2.4.1/bin/checkCalcServer make[2]: Nothing to be done for `install-data-am'. make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcserver/src' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcserver/src' Making install in data make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcserver/data' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcserver/data' make[2]: Nothing to be done for `install-exec-am'. /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/share/CalcServer' /usr/bin/install -c -m 644 Horizons.lis JPLEPH '/home/AstroSoft/DiFX2.4.1/share/CalcServer' make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcserver/data' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcserver/data' make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcserver' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcserver' /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/bin' /usr/bin/install -c startCalcServer '/home/AstroSoft/DiFX2.4.1/bin' make install-exec-hook make[3]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcserver' cat ./postinstall
Note: As root you may wish to do the following:
# cp init.d/calcserver /etc/init.d
and then perform the steps necessary on your computer to have this file run upon boot. This will cause calcserver to start automatically.
make[3]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcserver' make[2]: Nothing to be done for `install-data-am'. make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcserver' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcserver'
************************************ Building calcif2
checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /usr/bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking for style of include used by make... GNU checking dependency style of gcc... gcc3 checking whether build environment is sane... yes checking for erf in -lm... yes checking for pkg-config... /usr/bin/pkg-config checking pkg-config is at least version 0.9.0... yes checking for DIFXIO... yes checking for GSL... no checking that generated files are newer than configure... done checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating utils/Makefile config.status: creating config.h config.status: executing depfiles commands (CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/sh /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcif2/missing autoheader) rm -f stamp-h1 touch config.h.in cd . && /bin/sh ./config.status config.h config.status: creating config.h config.status: config.h is unchanged make all-recursive make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcif2' Making all in src make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcif2/src' gcc -DHAVE_CONFIG_H -I. -I.. -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT calcif2.o -MD -MP -MF .deps/calcif2.Tpo -c -o calcif2.o calcif2.c mv -f .deps/calcif2.Tpo .deps/calcif2.Po gcc -DHAVE_CONFIG_H -I. -I.. -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT difxcalc.o -MD -MP -MF .deps/difxcalc.Tpo -c -o difxcalc.o difxcalc.c mv -f .deps/difxcalc.Tpo .deps/difxcalc.Po gcc -DHAVE_CONFIG_H -I. -I.. -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT externaldelay.o -MD -MP -MF .deps/externaldelay.Tpo -c -o externaldelay.o externaldelay.c mv -f .deps/externaldelay.Tpo .deps/externaldelay.Po gcc -DHAVE_CONFIG_H -I. -I.. -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT CALC_xdr.o -MD -MP -MF .deps/CALC_xdr.Tpo -c -o CALC_xdr.o CALC_xdr.c mv -f .deps/CALC_xdr.Tpo .deps/CALC_xdr.Po gcc -DHAVE_CONFIG_H -I. -I.. -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT poly.o -MD -MP -MF .deps/poly.Tpo -c -o poly.o poly.c mv -f .deps/poly.Tpo .deps/poly.Po gcc -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -o calcif2 calcif2.o difxcalc.o externaldelay.o CALC_xdr.o poly.o -lm -L/home/AstroSoft/DiFX2.4.1/lib -ldifxio make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcif2/src' Making all in utils make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcif2/utils' gcc -DHAVE_CONFIG_H -I. -I.. -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT calc2skd.o -MD -MP -MF .deps/calc2skd.Tpo -c -o calc2skd.o calc2skd.c mv -f .deps/calc2skd.Tpo .deps/calc2skd.Po gcc -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -o calc2skd calc2skd.o -lm -L/home/AstroSoft/DiFX2.4.1/lib -ldifxio make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcif2/utils' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcif2' make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcif2' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcif2' Making install in src make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcif2/src' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcif2/src' /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/bin' /usr/bin/install -c calcif2 '/home/AstroSoft/DiFX2.4.1/bin' make[2]: Nothing to be done for `install-data-am'. make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcif2/src' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcif2/src' Making install in utils make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcif2/utils' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcif2/utils' /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/bin' /usr/bin/install -c calc2skd '/home/AstroSoft/DiFX2.4.1/bin' /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/bin' /usr/bin/install -c jobdisks genmachines.py joblist jobstatus difxsniff listmodules listcpus startdifx vlog '/home/AstroSoft/DiFX2.4.1/bin' make install-exec-hook make[3]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcif2/utils' mv /home/AstroSoft/DiFX2.4.1/bin/genmachines.py /home/AstroSoft/DiFX2.4.1/bin/genmachines make[3]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcif2/utils' make[2]: Nothing to be done for `install-data-am'. make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcif2/utils' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcif2/utils' make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcif2' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcif2' make[2]: Nothing to be done for `install-exec-am'. make[2]: Nothing to be done for `install-data-am'. make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcif2' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/calcif2'
************************************ Building difx2fits
checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking how to run the C preprocessor... gcc -E checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking whether byte ordering is bigendian... no checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /usr/bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking for style of include used by make... GNU checking whether make supports nested variables... yes checking dependency style of gcc... gcc3 checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking whether build environment is sane... yes checking for erf in -lm... yes checking for pkg-config... /usr/bin/pkg-config checking pkg-config is at least version 0.9.0... yes checking for DIFXIO... yes checking whether to enable fftw (default yes)... yes checking for FFTW3... yes checking that generated files are newer than configure... done checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating utils/Makefile config.status: creating config.h config.status: executing depfiles commands make all-recursive make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/difx2fits' Making all in src make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/difx2fits/src' gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT difx2fits.o -MD -MP -MF .deps/difx2fits.Tpo -c -o difx2fits.o difx2fits.c difx2fits.c: In function ‘convertFits’: difx2fits.c:977:2: warning: #warning "FIXME: multi-setup input would overwrite previously generated FITS, make tidier fix than a rename" [-Wcpp] #warning "FIXME: multi-setup input would overwrite previously generated FITS, make tidier fix than a rename" ^ mv -f .deps/difx2fits.Tpo .deps/difx2fits.Po gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT fits.o -MD -MP -MF .deps/fits.Tpo -c -o fits.o fits.c mv -f .deps/fits.Tpo .deps/fits.Po gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT fitsHeader.o -MD -MP -MF .deps/fitsHeader.Tpo -c -o fitsHeader.o fitsHeader.c mv -f .deps/fitsHeader.Tpo .deps/fitsHeader.Po gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT fitsAG.o -MD -MP -MF .deps/fitsAG.Tpo -c -o fitsAG.o fitsAG.c mv -f .deps/fitsAG.Tpo .deps/fitsAG.Po gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT fitsAN.o -MD -MP -MF .deps/fitsAN.Tpo -c -o fitsAN.o fitsAN.c mv -f .deps/fitsAN.Tpo .deps/fitsAN.Po gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT fitsCT.o -MD -MP -MF .deps/fitsCT.Tpo -c -o fitsCT.o fitsCT.c mv -f .deps/fitsCT.Tpo .deps/fitsCT.Po gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT fitsFL.o -MD -MP -MF .deps/fitsFL.Tpo -c -o fitsFL.o fitsFL.c fitsFL.c: In function ‘processFlagFile’: fitsFL.c:126:2: warning: #warning "FIXME: only one configId supported here" [-Wcpp] #warning "FIXME: only one configId supported here" ^ fitsFL.c: In function ‘DifxInput2FitsFL’: fitsFL.c:311:2: warning: #warning "FIXME: only one configId supported here" [-Wcpp] #warning "FIXME: only one configId supported here" ^ mv -f .deps/fitsFL.Tpo .deps/fitsFL.Po gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT fitsFR.o -MD -MP -MF .deps/fitsFR.Tpo -c -o fitsFR.o fitsFR.c mv -f .deps/fitsFR.Tpo .deps/fitsFR.Po gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT fitsGD.o -MD -MP -MF .deps/fitsGD.Tpo -c -o fitsGD.o fitsGD.c mv -f .deps/fitsGD.Tpo .deps/fitsGD.Po gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT fitsGM.o -MD -MP -MF .deps/fitsGM.Tpo -c -o fitsGM.o fitsGM.c mv -f .deps/fitsGM.Tpo .deps/fitsGM.Po gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT fitsGN.o -MD -MP -MF .deps/fitsGN.Tpo -c -o fitsGN.o fitsGN.c mv -f .deps/fitsGN.Tpo .deps/fitsGN.Po gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT fitsMC.o -MD -MP -MF .deps/fitsMC.Tpo -c -o fitsMC.o fitsMC.c fitsMC.c: In function ‘DifxInput2FitsMC’: fitsMC.c:134:2: warning: #warning "populate the new keyword below" [-Wcpp] #warning "populate the new keyword below" ^ mv -f .deps/fitsMC.Tpo .deps/fitsMC.Po gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT fitsML.o -MD -MP -MF .deps/fitsML.Tpo -c -o fitsML.o fitsML.c mv -f .deps/fitsML.Tpo .deps/fitsML.Po gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT fitsPH.o -MD -MP -MF .deps/fitsPH.Tpo -c -o fitsPH.o fitsPH.c fitsPH.c:40:2: warning: #warning "FIXME: even this could be too small!" [-Wcpp] #warning "FIXME: even this could be too small!" ^ fitsPH.c:47:2: warning: #warning "FIXME: the generation of this FITS table is quite broken with regard to multiple datastreams per antenna." [-Wcpp] #warning "FIXME: the generation of this FITS table is quite broken with regard to multiple datastreams per antenna." ^ mv -f .deps/fitsPH.Tpo .deps/fitsPH.Po gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT fitsSO.o -MD -MP -MF .deps/fitsSO.Tpo -c -o fitsSO.o fitsSO.c mv -f .deps/fitsSO.Tpo .deps/fitsSO.Po gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT fitsSU.o -MD -MP -MF .deps/fitsSU.Tpo -c -o fitsSU.o fitsSU.c fitsSU.c:35:2: warning: #warning "FIXME: implement RAOBS and DECOBS columns" [-Wcpp] #warning "FIXME: implement RAOBS and DECOBS columns" ^ mv -f .deps/fitsSU.Tpo .deps/fitsSU.Po gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT fitsTS.o -MD -MP -MF .deps/fitsTS.Tpo -c -o fitsTS.o fitsTS.c mv -f .deps/fitsTS.Tpo .deps/fitsTS.Po gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT fitsUV.o -MD -MP -MF .deps/fitsUV.Tpo -c -o fitsUV.o fitsUV.c fitsUV.c: In function ‘DifxVisInitData’: fitsUV.c:87:2: warning: #warning "FIXME: here add a similar thing for gateId?" [-Wcpp] #warning "FIXME: here add a similar thing for gateId?" ^ fitsUV.c: In function ‘DifxVisNewUVData’: fitsUV.c:624:2: warning: #warning "FIXME: look at sourceId in the record as a check" [-Wcpp] #warning "FIXME: look at sourceId in the record as a check" ^ fitsUV.c:625:2: warning: #warning "FIXME: look at configId in the record as a check" [-Wcpp] #warning "FIXME: look at configId in the record as a check" ^ mv -f .deps/fitsUV.Tpo .deps/fitsUV.Po gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT fitsWR.o -MD -MP -MF .deps/fitsWR.Tpo -c -o fitsWR.o fitsWR.c mv -f .deps/fitsWR.Tpo .deps/fitsWR.Po gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT mjd2str.o -MD -MP -MF .deps/mjd2str.Tpo -c -o mjd2str.o mjd2str.c mv -f .deps/mjd2str.Tpo .deps/mjd2str.Po gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT time2str.o -MD -MP -MF .deps/time2str.Tpo -c -o time2str.o time2str.c mv -f .deps/time2str.Tpo .deps/time2str.Po gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT jobmatrix.o -MD -MP -MF .deps/jobmatrix.Tpo -c -o jobmatrix.o jobmatrix.c mv -f .deps/jobmatrix.Tpo .deps/jobmatrix.Po gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT util.o -MD -MP -MF .deps/util.Tpo -c -o util.o util.c mv -f .deps/util.Tpo .deps/util.Po gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT sniffer.o -MD -MP -MF .deps/sniffer.Tpo -c -o sniffer.o sniffer.c sniffer.c: In function ‘newSniffer’: sniffer.c:362:2: warning: #warning "FIXME: I think almost twice as much memory is being allocated as is needed -WFB" [-Wcpp] #warning "FIXME: I think almost twice as much memory is being allocated as is needed -WFB" ^ mv -f .deps/sniffer.Tpo .deps/sniffer.Po gcc -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -o difx2fits difx2fits.o fits.o fitsHeader.o fitsAG.o fitsAN.o fitsCT.o fitsFL.o fitsFR.o fitsGD.o fitsGM.o fitsGN.o fitsMC.o fitsML.o fitsPH.o fitsSO.o fitsSU.o fitsTS.o fitsUV.o fitsWR.o mjd2str.o time2str.o textutils.o ymd2mjd.o jobmatrix.o util.o sniffer.o -lm -L/home/AstroSoft/DiFX2.4.1/lib -ldifxio -lfftw3 -lm make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/difx2fits/src' Making all in utils make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/difx2fits/utils' make[2]: Nothing to be done for `all'. make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/difx2fits/utils' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/difx2fits' make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/difx2fits' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/difx2fits' Making install in src make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/difx2fits/src' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/difx2fits/src' /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/bin' /usr/bin/install -c difx2fits '/home/AstroSoft/DiFX2.4.1/bin' make[2]: Nothing to be done for `install-data-am'. make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/difx2fits/src' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/difx2fits/src' Making install in utils make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/difx2fits/utils' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/difx2fits/utils' /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/bin' /usr/bin/install -c makefits plotpcal showcal '/home/AstroSoft/DiFX2.4.1/bin' make[2]: Nothing to be done for `install-data-am'. make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/difx2fits/utils' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/difx2fits/utils' make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/difx2fits' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/difx2fits' make[2]: Nothing to be done for `install-exec-am'. make[2]: Nothing to be done for `install-data-am'. make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/difx2fits' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/difx2fits'
************************************ Building vex2difx
libtoolize: putting auxiliary files in `.'. libtoolize: copying file `./ltmain.sh' libtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.ac and libtoolize: rerunning libtoolize, to keep the correct libtool macros in-tree. libtoolize: Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am. checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking how to run the C preprocessor... gcc -E checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking whether byte ordering is bigendian... no checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /usr/bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking for style of include used by make... GNU checking whether make supports nested variables... yes checking dependency style of gcc... gcc3 checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... gfortran checking whether we are using the GNU Fortran 77 compiler... yes checking whether gfortran accepts -g... yes checking how to run the C preprocessor... gcc -E checking build system type... x86_64-unknown-linux-gnu checking host system type... x86_64-unknown-linux-gnu checking how to print strings... printf checking for a sed that does not truncate output... /usr/bin/sed checking for fgrep... /usr/bin/grep -F checking for ld used by gcc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop checking for /usr/bin/ld option to reload object files... -r checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for dlltool... no checking how to associate runtime and link libraries... printf %s\n checking for ar... ar checking for archiver @FILE support... @ checking for strip... strip checking for ranlib... ranlib checking command to parse /usr/bin/nm -B output from gcc object... ok checking for sysroot... no checking for mt... no checking if : is a manifest tool... no checking for dlfcn.h... yes checking for objdir... .libs checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... yes checking if gcc static flag -static works... no checking if gcc supports -c -o file.o... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking for gfortran option to produce PIC... -fPIC checking if gfortran PIC flag -fPIC works... yes checking if gfortran static flag -static works... no checking if gfortran supports -c -o file.o... yes checking if gfortran supports -c -o file.o... (cached) yes checking whether the gfortran linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for bison... bison -y checking for flex... flex checking lex output file root... lex.yy checking lex library... -lfl checking whether yytext is a pointer... yes checking whether build environment is sane... yes checking for g++... g++ checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking dependency style of g++... gcc3 checking how to run the C++ preprocessor... g++ -E checking for ld used by g++... /usr/bin/ld -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC -DPIC checking if g++ PIC flag -fPIC -DPIC works... yes checking if g++ static flag -static works... no checking if g++ supports -c -o file.o... yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether build environment is sane... yes checking for erf in -lm... yes checking for pkg-config... /usr/bin/pkg-config checking pkg-config is at least version 0.9.0... yes checking for DIFXIO... yes checking for DIFXMESSAGE... yes checking for GPSTK... no checking that generated files are newer than configure... done checking that generated files are newer than configure... done checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: creating vex/Makefile config.status: creating vex/vex.pc config.status: creating src/Makefile config.status: creating utilities/Makefile config.status: creating config.h config.status: executing depfiles commands config.status: executing libtool commands make all-recursive make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/vex2difx' Making all in vex make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/vex2difx/vex' make all-am make[3]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/vex2difx/vex' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Dyyerror=vexerror -Dyylval=vexlval -Dyyin=vexin -Dyyparse=vexparse -Dyylex=vexlex -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT print_vex.lo -MD -MP -MF .deps/print_vex.Tpo -c -o print_vex.lo print_vex.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Dyyerror=vexerror -Dyylval=vexlval -Dyyin=vexin -Dyyparse=vexparse -Dyylex=vexlex -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT print_vex.lo -MD -MP -MF .deps/print_vex.Tpo -c print_vex.c -fPIC -DPIC -o .libs/print_vex.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Dyyerror=vexerror -Dyylval=vexlval -Dyyin=vexin -Dyyparse=vexparse -Dyylex=vexlex -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT print_vex.lo -MD -MP -MF .deps/print_vex.Tpo -c print_vex.c -o print_vex.o >/dev/null 2>&1 mv -f .deps/print_vex.Tpo .deps/print_vex.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Dyyerror=vexerror -Dyylval=vexlval -Dyyin=vexin -Dyyparse=vexparse -Dyylex=vexlex -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT vexf.lo -MD -MP -MF .deps/vexf.Tpo -c -o vexf.lo vexf.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Dyyerror=vexerror -Dyylval=vexlval -Dyyin=vexin -Dyyparse=vexparse -Dyylex=vexlex -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT vexf.lo -MD -MP -MF .deps/vexf.Tpo -c vexf.c -fPIC -DPIC -o .libs/vexf.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Dyyerror=vexerror -Dyylval=vexlval -Dyyin=vexin -Dyyparse=vexparse -Dyylex=vexlex -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT vexf.lo -MD -MP -MF .deps/vexf.Tpo -c vexf.c -o vexf.o >/dev/null 2>&1 mv -f .deps/vexf.Tpo .deps/vexf.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Dyyerror=vexerror -Dyylval=vexlval -Dyyin=vexin -Dyyparse=vexparse -Dyylex=vexlex -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT vexf_put.lo -MD -MP -MF .deps/vexf_put.Tpo -c -o vexf_put.lo vexf_put.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Dyyerror=vexerror -Dyylval=vexlval -Dyyin=vexin -Dyyparse=vexparse -Dyylex=vexlex -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT vexf_put.lo -MD -MP -MF .deps/vexf_put.Tpo -c vexf_put.c -fPIC -DPIC -o .libs/vexf_put.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Dyyerror=vexerror -Dyylval=vexlval -Dyyin=vexin -Dyyparse=vexparse -Dyylex=vexlex -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT vexf_put.lo -MD -MP -MF .deps/vexf_put.Tpo -c vexf_put.c -o vexf_put.o >/dev/null 2>&1 mv -f .deps/vexf_put.Tpo .deps/vexf_put.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Dyyerror=vexerror -Dyylval=vexlval -Dyyin=vexin -Dyyparse=vexparse -Dyylex=vexlex -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT vex_get.lo -MD -MP -MF .deps/vex_get.Tpo -c -o vex_get.lo vex_get.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Dyyerror=vexerror -Dyylval=vexlval -Dyyin=vexin -Dyyparse=vexparse -Dyylex=vexlex -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT vex_get.lo -MD -MP -MF .deps/vex_get.Tpo -c vex_get.c -fPIC -DPIC -o .libs/vex_get.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Dyyerror=vexerror -Dyylval=vexlval -Dyyin=vexin -Dyyparse=vexparse -Dyylex=vexlex -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT vex_get.lo -MD -MP -MF .deps/vex_get.Tpo -c vex_get.c -o vex_get.o >/dev/null 2>&1 mv -f .deps/vex_get.Tpo .deps/vex_get.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Dyyerror=vexerror -Dyylval=vexlval -Dyyin=vexin -Dyyparse=vexparse -Dyylex=vexlex -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT vex_put.lo -MD -MP -MF .deps/vex_put.Tpo -c -o vex_put.lo vex_put.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Dyyerror=vexerror -Dyylval=vexlval -Dyyin=vexin -Dyyparse=vexparse -Dyylex=vexlex -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT vex_put.lo -MD -MP -MF .deps/vex_put.Tpo -c vex_put.c -fPIC -DPIC -o .libs/vex_put.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Dyyerror=vexerror -Dyylval=vexlval -Dyyin=vexin -Dyyparse=vexparse -Dyylex=vexlex -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT vex_put.lo -MD -MP -MF .deps/vex_put.Tpo -c vex_put.c -o vex_put.o >/dev/null 2>&1 mv -f .deps/vex_put.Tpo .deps/vex_put.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Dyyerror=vexerror -Dyylval=vexlval -Dyyin=vexin -Dyyparse=vexparse -Dyylex=vexlex -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT vex_util.lo -MD -MP -MF .deps/vex_util.Tpo -c -o vex_util.lo vex_util.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Dyyerror=vexerror -Dyylval=vexlval -Dyyin=vexin -Dyyparse=vexparse -Dyylex=vexlex -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT vex_util.lo -MD -MP -MF .deps/vex_util.Tpo -c vex_util.c -fPIC -DPIC -o .libs/vex_util.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Dyyerror=vexerror -Dyylval=vexlval -Dyyin=vexin -Dyyparse=vexparse -Dyylex=vexlex -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT vex_util.lo -MD -MP -MF .deps/vex_util.Tpo -c vex_util.c -o vex_util.o >/dev/null 2>&1 mv -f .deps/vex_util.Tpo .deps/vex_util.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Dyyerror=vexerror -Dyylval=vexlval -Dyyin=vexin -Dyyparse=vexparse -Dyylex=vexlex -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT vex_parse.lo -MD -MP -MF .deps/vex_parse.Tpo -c -o vex_parse.lo vex_parse.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Dyyerror=vexerror -Dyylval=vexlval -Dyyin=vexin -Dyyparse=vexparse -Dyylex=vexlex -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT vex_parse.lo -MD -MP -MF .deps/vex_parse.Tpo -c vex_parse.c -fPIC -DPIC -o .libs/vex_parse.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Dyyerror=vexerror -Dyylval=vexlval -Dyyin=vexin -Dyyparse=vexparse -Dyylex=vexlex -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT vex_parse.lo -MD -MP -MF .deps/vex_parse.Tpo -c vex_parse.c -o vex_parse.o >/dev/null 2>&1 mv -f .deps/vex_parse.Tpo .deps/vex_parse.Plo /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -Dyyerror=vexerror -Dyylval=vexlval -Dyyin=vexin -Dyyparse=vexparse -Dyylex=vexlex -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT vex.yy.lo -MD -MP -MF .deps/vex.yy.Tpo -c -o vex.yy.lo vex.yy.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Dyyerror=vexerror -Dyylval=vexlval -Dyyin=vexin -Dyyparse=vexparse -Dyylex=vexlex -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT vex.yy.lo -MD -MP -MF .deps/vex.yy.Tpo -c vex.yy.c -fPIC -DPIC -o .libs/vex.yy.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -Dyyerror=vexerror -Dyylval=vexlval -Dyyin=vexin -Dyyparse=vexparse -Dyylex=vexlex -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT vex.yy.lo -MD -MP -MF .deps/vex.yy.Tpo -c vex.yy.c -o vex.yy.o >/dev/null 2>&1 mv -f .deps/vex.yy.Tpo .deps/vex.yy.Plo /bin/sh ../libtool --tag=CC --mode=link gcc -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -o libvex.la -rpath /home/AstroSoft/DiFX2.4.1/lib print_vex.lo vexf.lo vexf_put.lo vex_get.lo vex_put.lo vex_util.lo vex_parse.lo vex.yy.lo -lfl -lm -L/home/AstroSoft/DiFX2.4.1/lib -ldifxio libtool: link: rm -fr .libs/libvex.a .libs/libvex.la .libs/libvex.lai .libs/libvex.so .libs/libvex.so.0 .libs/libvex.so.0.0.0 libtool: link: gcc -shared -fPIC -DPIC .libs/print_vex.o .libs/vexf.o .libs/vexf_put.o .libs/vex_get.o .libs/vex_put.o .libs/vex_util.o .libs/vex_parse.o .libs/vex.yy.o -Wl,-rpath -Wl,/home/AstroSoft/DiFX2.4.1/lib -Wl,-rpath -Wl,/home/AstroSoft/DiFX2.4.1/lib -lfl -L/home/AstroSoft/DiFX2.4.1/lib /home/AstroSoft/DiFX2.4.1/lib/libdifxio.so -lfftw3 -lm -O2 -Wl,-soname -Wl,libvex.so.0 -o .libs/libvex.so.0.0.0 libtool: link: (cd ".libs" && rm -f "libvex.so.0" && ln -s "libvex.so.0.0.0" "libvex.so.0") libtool: link: (cd ".libs" && rm -f "libvex.so" && ln -s "libvex.so.0.0.0" "libvex.so") libtool: link: ar cru .libs/libvex.a print_vex.o vexf.o vexf_put.o vex_get.o vex_put.o vex_util.o vex_parse.o vex.yy.o libtool: link: ranlib .libs/libvex.a libtool: link: ( cd ".libs" && rm -f "libvex.la" && ln -s "../libvex.la" "libvex.la" ) make[3]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/vex2difx/vex' make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/vex2difx/vex' Making all in src make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/vex2difx/src' g++ -DHAVE_CONFIG_H -I. -I.. -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT vextables.o -MD -MP -MF .deps/vextables.Tpo -c -o vextables.o vextables.cpp mv -f .deps/vextables.Tpo .deps/vextables.Po g++ -DHAVE_CONFIG_H -I. -I.. -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT vexload.o -MD -MP -MF .deps/vexload.Tpo -c -o vexload.o vexload.cpp vexload.cpp:439:2: warning: #warning : "FIXME: note: the following should eventually be removed once proper linking in vex files is in place" [-Wcpp] #warning: "FIXME: note: the following should eventually be removed once proper linking in vex files is in place" ^ vexload.cpp:1243:2: warning: #warning "handling of INTERLACEDVDIF nRecordChan may not be correct in all cases" [-Wcpp] #warning "handling of INTERLACEDVDIF nRecordChan may not be correct in all cases" ^ mv -f .deps/vexload.Tpo .deps/vexload.Po g++ -DHAVE_CONFIG_H -I. -I.. -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT corrparams.o -MD -MP -MF .deps/corrparams.Tpo -c -o corrparams.o corrparams.cpp corrparams.cpp:611:2: warning: #warning "FIXME: this assumes worst case bandwidth here" [-Wcpp] #warning "FIXME: this assumes worst case bandwidth here" ^ corrparams.cpp:1234:2: warning: #warning "FIXME: this section of code could be made much nicer" [-Wcpp] #warning "FIXME: this section of code could be made much nicer" ^ corrparams.cpp:2436:2: warning: #warning "FIXME: This logic should consider number of antennas and possibly number of sub-bands" [-Wcpp] #warning "FIXME: This logic should consider number of antennas and possibly number of sub-bands" ^ mv -f .deps/corrparams.Tpo .deps/corrparams.Po g++ -DHAVE_CONFIG_H -I. -I.. -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT util.o -MD -MP -MF .deps/util.Tpo -c -o util.o util.cpp mv -f .deps/util.Tpo .deps/util.Po g++ -DHAVE_CONFIG_H -I. -I.. -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT vex2difx.o -MD -MP -MF .deps/vex2difx.Tpo -c -o vex2difx.o vex2difx.cpp vex2difx.cpp:90:2: warning: #warning "FIXME: handle non 2^n overSamp here" [-Wcpp] #warning "FIXME: handle non 2^n overSamp here" ^ vex2difx.cpp:211:2: warning: #warning "FIXME: verify modes are compatible" [-Wcpp] #warning "FIXME: verify modes are compatible" ^ vex2difx.cpp:1246:2: warning: #warning "FIXME: populateBaselineTable assumes nAntenna == nDatastream!" [-Wcpp] #warning "FIXME: populateBaselineTable assumes nAntenna == nDatastream!" ^ vex2difx.cpp:1986:2: warning: #warning "FIXME: is setting pulsarId = -1 correct" [-Wcpp] #warning "FIXME: is setting pulsarId = -1 correct" ^ vex2difx.cpp:2276:2: warning: #warning "FIXME: There might be something fishy in the source name comparison above." [-Wcpp] #warning "FIXME: There might be something fishy in the source name comparison above." ^ vex2difx.cpp:3065:2: warning: #warning "FIXME: ultimately move this to writeDifxInput()" [-Wcpp] #warning "FIXME: ultimately move this to writeDifxInput()" ^ vex2difx.cpp:3283:2: warning: #warning "FIXME: check phase center names for legality" [-Wcpp] #warning "FIXME: check phase center names for legality" ^ mv -f .deps/vex2difx.Tpo .deps/vex2difx.Po /bin/sh ../libtool --tag=CXX --mode=link g++ -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -o vex2difx vextables.o vexload.o corrparams.o util.o vex2difx.o ../vex/libvex.la -lfl -lm -L/home/AstroSoft/DiFX2.4.1/lib -ldifxio libtool: link: g++ -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -o .libs/vex2difx vextables.o vexload.o corrparams.o util.o vex2difx.o ../vex/.libs/libvex.so -L/home/AstroSoft/DiFX2.4.1/lib -lfl /home/AstroSoft/DiFX2.4.1/lib/libdifxio.so -lfftw3 -lm -Wl,-rpath -Wl,/home/AstroSoft/DiFX2.4.1/lib g++ -DHAVE_CONFIG_H -I. -I.. -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -MT vexpeek.o -MD -MP -MF .deps/vexpeek.Tpo -c -o vexpeek.o vexpeek.cpp mv -f .deps/vexpeek.Tpo .deps/vexpeek.Po /bin/sh ../libtool --tag=CXX --mode=link g++ -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -o vexpeek vexpeek.o vextables.o vexload.o corrparams.o ../vex/libvex.la -lfl -lm -L/home/AstroSoft/DiFX2.4.1/lib -ldifxio libtool: link: g++ -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -o .libs/vexpeek vexpeek.o vextables.o vexload.o corrparams.o ../vex/.libs/libvex.so -L/home/AstroSoft/DiFX2.4.1/lib -lfl /home/AstroSoft/DiFX2.4.1/lib/libdifxio.so -lfftw3 -lm -Wl,-rpath -Wl,/home/AstroSoft/DiFX2.4.1/lib make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/vex2difx/src' Making all in utilities make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/vex2difx/utilities' make[2]: Nothing to be done for `all'. make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/vex2difx/utilities' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/vex2difx' make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/vex2difx' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/vex2difx' Making install in vex make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/vex2difx/vex' make install-am make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/vex2difx/vex' make[3]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/vex2difx/vex' /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/lib' /bin/sh ../libtool --mode=install /usr/bin/install -c libvex.la '/home/AstroSoft/DiFX2.4.1/lib' libtool: install: /usr/bin/install -c .libs/libvex.so.0.0.0 /home/AstroSoft/DiFX2.4.1/lib/libvex.so.0.0.0 libtool: install: (cd /home/AstroSoft/DiFX2.4.1/lib && { ln -s -f libvex.so.0.0.0 libvex.so.0 || { rm -f libvex.so.0 && ln -s libvex.so.0.0.0 libvex.so.0; }; }) libtool: install: (cd /home/AstroSoft/DiFX2.4.1/lib && { ln -s -f libvex.so.0.0.0 libvex.so || { rm -f libvex.so && ln -s libvex.so.0.0.0 libvex.so; }; }) libtool: install: /usr/bin/install -c .libs/libvex.lai /home/AstroSoft/DiFX2.4.1/lib/libvex.la libtool: install: /usr/bin/install -c .libs/libvex.a /home/AstroSoft/DiFX2.4.1/lib/libvex.a libtool: install: chmod 644 /home/AstroSoft/DiFX2.4.1/lib/libvex.a libtool: install: ranlib /home/AstroSoft/DiFX2.4.1/lib/libvex.a libtool: finish: PATH="/home/AstroSoft/DiFX2.4.1/bin:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin:/opt/casa/casa-release-4.7.0-1-el7/bin:/sbin" ldconfig -n /home/AstroSoft/DiFX2.4.1/lib ---------------------------------------------------------------------- Libraries have been installed in: /home/AstroSoft/DiFX2.4.1/lib
If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf'
See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/include' /usr/bin/install -c -m 644 vex_parse.h vex.h '/home/AstroSoft/DiFX2.4.1/include' /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/lib/pkgconfig' /usr/bin/install -c -m 644 vex.pc '/home/AstroSoft/DiFX2.4.1/lib/pkgconfig' make[3]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/vex2difx/vex' make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/vex2difx/vex' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/vex2difx/vex' Making install in src make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/vex2difx/src' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/vex2difx/src' /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/bin' /bin/sh ../libtool --mode=install /usr/bin/install -c vex2difx vexpeek '/home/AstroSoft/DiFX2.4.1/bin' libtool: install: /usr/bin/install -c .libs/vex2difx /home/AstroSoft/DiFX2.4.1/bin/vex2difx libtool: install: /usr/bin/install -c .libs/vexpeek /home/AstroSoft/DiFX2.4.1/bin/vexpeek make[2]: Nothing to be done for `install-data-am'. make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/vex2difx/src' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/vex2difx/src' Making install in utilities make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/vex2difx/utilities' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/vex2difx/utilities' /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/bin' /usr/bin/install -c padCalcScans difxspeed oms2v2d calc2xyz calc2sked '/home/AstroSoft/DiFX2.4.1/bin' make[2]: Nothing to be done for `install-data-am'. make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/vex2difx/utilities' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/vex2difx/utilities' make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/vex2difx' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/vex2difx' make[2]: Nothing to be done for `install-exec-am'. make[2]: Nothing to be done for `install-data-am'. make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/vex2difx' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/vex2difx'
************************************ Building difx2mark4
checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking how to run the C preprocessor... gcc -E checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking whether byte ordering is bigendian... no checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /usr/bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking for style of include used by make... GNU checking whether make supports nested variables... yes checking dependency style of gcc... gcc3 checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking for gawk... (cached) gawk checking whether build environment is sane... yes checking for erf in -lm... yes checking for pkg-config... /usr/bin/pkg-config checking pkg-config is at least version 0.9.0... yes checking for DIFXIO... yes checking whether to enable fftw (default yes)... yes checking for FFTW3... yes checking that generated files are newer than configure... done checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: executing depfiles commands make all-recursive make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/difx2mark4' Making all in src make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/difx2mark4/src' gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT difx2mark4.o -MD -MP -MF .deps/difx2mark4.Tpo -c -o difx2mark4.o difx2mark4.c mv -f .deps/difx2mark4.Tpo .deps/difx2mark4.Po gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT createRoot.o -MD -MP -MF .deps/createRoot.Tpo -c -o createRoot.o createRoot.c mv -f .deps/createRoot.Tpo .deps/createRoot.Po gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT createType1s.o -MD -MP -MF .deps/createType1s.Tpo -c -o createType1s.o createType1s.c mv -f .deps/createType1s.Tpo .deps/createType1s.Po gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT new_type1.o -MD -MP -MF .deps/new_type1.Tpo -c -o new_type1.o new_type1.c mv -f .deps/new_type1.Tpo .deps/new_type1.Po gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT createType3s.o -MD -MP -MF .deps/createType3s.Tpo -c -o createType3s.o createType3s.c mv -f .deps/createType3s.Tpo .deps/createType3s.Po gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT root_id.o -MD -MP -MF .deps/root_id.Tpo -c -o root_id.o root_id.c mv -f .deps/root_id.Tpo .deps/root_id.Po gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT single_code.o -MD -MP -MF .deps/single_code.Tpo -c -o single_code.o single_code.c mv -f .deps/single_code.Tpo .deps/single_code.Po gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT conv2date.o -MD -MP -MF .deps/conv2date.Tpo -c -o conv2date.o conv2date.c mv -f .deps/conv2date.Tpo .deps/conv2date.Po gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT get_vis.o -MD -MP -MF .deps/get_vis.Tpo -c -o get_vis.o get_vis.c mv -f .deps/get_vis.Tpo .deps/get_vis.Po gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT swabr.o -MD -MP -MF .deps/swabr.Tpo -c -o swabr.o swabr.c mv -f .deps/swabr.Tpo .deps/swabr.Po gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT write_t100.o -MD -MP -MF .deps/write_t100.Tpo -c -o write_t100.o write_t100.c mv -f .deps/write_t100.Tpo .deps/write_t100.Po gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT write_t101.o -MD -MP -MF .deps/write_t101.Tpo -c -o write_t101.o write_t101.c mv -f .deps/write_t101.Tpo .deps/write_t101.Po gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT write_t120.o -MD -MP -MF .deps/write_t120.Tpo -c -o write_t120.o write_t120.c mv -f .deps/write_t120.Tpo .deps/write_t120.Po gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT write_t300.o -MD -MP -MF .deps/write_t300.Tpo -c -o write_t300.o write_t300.c mv -f .deps/write_t300.Tpo .deps/write_t300.Po gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT write_t301.o -MD -MP -MF .deps/write_t301.Tpo -c -o write_t301.o write_t301.c mv -f .deps/write_t301.Tpo .deps/write_t301.Po gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT write_t302.o -MD -MP -MF .deps/write_t302.Tpo -c -o write_t302.o write_t302.c mv -f .deps/write_t302.Tpo .deps/write_t302.Po gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT write_t303.o -MD -MP -MF .deps/write_t303.Tpo -c -o write_t303.o write_t303.c mv -f .deps/write_t303.Tpo .deps/write_t303.Po gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT write_t309.o -MD -MP -MF .deps/write_t309.Tpo -c -o write_t309.o write_t309.c mv -f .deps/write_t309.Tpo .deps/write_t309.Po gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT other.o -MD -MP -MF .deps/other.Tpo -c -o other.o other.c mv -f .deps/other.Tpo .deps/other.Po gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT normalize.o -MD -MP -MF .deps/normalize.Tpo -c -o normalize.o normalize.c mv -f .deps/normalize.Tpo .deps/normalize.Po gcc -DHAVE_CONFIG_H -I. -I.. -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -MT fill_fblock.o -MD -MP -MF .deps/fill_fblock.Tpo -c -o fill_fblock.o fill_fblock.c mv -f .deps/fill_fblock.Tpo .deps/fill_fblock.Po gcc -D_LARGE_FILE_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -o difx2mark4 difx2mark4.o createRoot.o createType1s.o new_type1.o createType3s.o root_id.o single_code.o conv2date.o get_vis.o swabr.o write_t100.o write_t101.o write_t120.o write_t300.o write_t301.o write_t302.o write_t303.o write_t309.o other.o normalize.o fill_fblock.o -lm -L/home/AstroSoft/DiFX2.4.1/lib -ldifxio -lfftw3 -lm make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/difx2mark4/src' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/difx2mark4' make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/difx2mark4' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/difx2mark4' Making install in src make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/difx2mark4/src' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/difx2mark4/src' /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/bin' /usr/bin/install -c difx2mark4 '/home/AstroSoft/DiFX2.4.1/bin' make[2]: Nothing to be done for `install-data-am'. make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/difx2mark4/src' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/difx2mark4/src' make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/difx2mark4' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/difx2mark4' make[2]: Nothing to be done for `install-exec-am'. make[2]: Nothing to be done for `install-data-am'. make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/difx2mark4' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/applications/difx2mark4'
************************************ Building pulsar/difx2profile checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /usr/bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking whether the C++ compiler works... yes checking for C++ compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C++ compiler... yes checking whether /home/AstroSoft/mpich/bin/mpicxx accepts -g... yes checking for style of include used by make... GNU checking dependency style of /home/AstroSoft/mpich/bin/mpicxx... gcc3 checking for ranlib... ranlib checking for pkg-config... /usr/bin/pkg-config checking pkg-config is at least version 0.9.0... yes checking for DIFXIO... yes checking for FXCORR... yes checking for DIFXMESSAGE... yes checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating scripts/Makefile config.status: creating config.h config.status: executing depfiles commands (CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/sh /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/utilities/pulsar/difx2profile/missing autoheader) rm -f stamp-h1 touch config.h.in cd . && /bin/sh ./config.status config.h config.status: creating config.h config.status: config.h is unchanged make all-recursive make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/utilities/pulsar/difx2profile' Making all in src make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/utilities/pulsar/difx2profile/src' /home/AstroSoft/mpich/bin/mpicxx -DHAVE_CONFIG_H -I. -I.. -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/mpifxcorr -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -MT difx2profile.o -MD -MP -MF .deps/difx2profile.Tpo -c -o difx2profile.o difx2profile.cpp mv -f .deps/difx2profile.Tpo .deps/difx2profile.Po /home/AstroSoft/mpich/bin/mpicxx -g -O2 -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/mpifxcorr -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -o difx2profile difx2profile.o -Wl,-rpath,/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/sharedlib -L/home/AstroSoft/DiFX2.4.1/lib -L/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/sharedlib -lfxcorr -lmark5access -lippsem64t -lguide -lippvmem64t -lippcoreem64t -lpthread -L/home/AstroSoft/DiFX2.4.1/lib -ldifxio -L/home/AstroSoft/DiFX2.4.1/lib -ldifxmessage -lpthread make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/utilities/pulsar/difx2profile/src' Making all in scripts make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/utilities/pulsar/difx2profile/scripts' make[2]: Nothing to be done for `all'. make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/utilities/pulsar/difx2profile/scripts' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/utilities/pulsar/difx2profile' make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/utilities/pulsar/difx2profile' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/utilities/pulsar/difx2profile' Making install in src make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/utilities/pulsar/difx2profile/src' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/utilities/pulsar/difx2profile/src' /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/bin' /usr/bin/install -c difx2profile '/home/AstroSoft/DiFX2.4.1/bin' make[2]: Nothing to be done for `install-data-am'. make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/utilities/pulsar/difx2profile/src' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/utilities/pulsar/difx2profile/src' Making install in scripts make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/utilities/pulsar/difx2profile/scripts' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/utilities/pulsar/difx2profile/scripts' /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/bin' /usr/bin/install -c profile2binconfig.py '/home/AstroSoft/DiFX2.4.1/bin' make[2]: Nothing to be done for `install-data-am'. make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/utilities/pulsar/difx2profile/scripts' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/utilities/pulsar/difx2profile/scripts' make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/utilities/pulsar/difx2profile' make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/utilities/pulsar/difx2profile' make[2]: Nothing to be done for `install-exec-am'. make[2]: Nothing to be done for `install-data-am'. make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/utilities/pulsar/difx2profile' make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/utilities/pulsar/difx2profile'
************************************ Building misc checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /usr/bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile make: Nothing to be done for `all'. make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/utilities/misc' /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/bin' /usr/bin/install -c dir2filelist.pl geteop.pl pcList.pl fslog2difx.pl sec2time.pl difxcopy startcorr.pl time.pl time2sec.pl update_eop vex2setup.pl filterDifx2Fits.py '/home/AstroSoft/DiFX2.4.1/bin' make install-exec-hook make[2]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/utilities/misc' mv /home/AstroSoft/DiFX2.4.1/bin/filterDifx2Fits.py /home/AstroSoft/DiFX2.4.1/bin/filterDifx2Fits make[2]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/utilities/misc' make[1]: Nothing to be done for `install-data-am'. make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/utilities/misc'
************************************ Building vis2screen configure.ac:6: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see: configure.ac:6: http: checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /usr/bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking for pkg-config... /usr/bin/pkg-config checking pkg-config is at least version 0.9.0... yes checking for FXCORR... yes checking for DIFXMESSAGE... yes checking whether the C++ compiler works... yes checking for C++ compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C++ compiler... yes checking whether /home/AstroSoft/mpich/bin/mpicxx accepts -g... yes checking for style of include used by make... GNU checking dependency style of /home/AstroSoft/mpich/bin/mpicxx... gcc3 checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: executing depfiles commands /home/AstroSoft/mpich/bin/mpicxx -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"printDiFX\" -DVERSION=\"0.5\" -I. -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/mpifxcorr -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -g -O2 -MT printDiFX.o -MD -MP -MF .deps/printDiFX.Tpo -c -o printDiFX.o printDiFX.cpp mv -f .deps/printDiFX.Tpo .deps/printDiFX.Po /home/AstroSoft/mpich/bin/mpicxx -I/home/AstroSoft/DiFX2.4.1/include -I/home/AstroSoft/DiFX2.4.1/include/mpifxcorr -I/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/include -g -O2 -o printDiFX printDiFX.o -Wl,-rpath,/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/sharedlib -L/home/AstroSoft/DiFX2.4.1/lib -L/home/AstroSoft/intel/ipp_6/6.0.1.071/em64t/sharedlib -lfxcorr -lmark5access -lippsem64t -lguide -lippvmem64t -lippcoreem64t -lpthread -L/home/AstroSoft/DiFX2.4.1/lib -ldifxmessage make[1]: Entering directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/utilities/vis2screen' /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/bin' /usr/bin/install -c printDiFX '/home/AstroSoft/DiFX2.4.1/bin' /usr/bin/mkdir -p '/home/AstroSoft/DiFX2.4.1/bin' /usr/bin/install -c diffDiFX.py plotDiFX.py parseDiFX.py fringeFindDiFX.py plotDynamicSpectrum.py snipDiFX.py '/home/AstroSoft/DiFX2.4.1/bin' make[1]: Nothing to be done for `install-data-am'. make[1]: Leaving directory `/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/utilities/vis2screen' cp -f /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/doco-index.html /home/AstroSoft/DiFX2.4.1/doc cp: cannot stat ‘/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/doco-index.html’: No such file or directory /usr/bin/doxygen Warning: Tag `USE_WINDOWS_ENCODING' at line 11 of file Doxyfile has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" Warning: Tag `DETAILS_AT_TOP' at line 33 of file Doxyfile has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" Warning: Tag `SHOW_DIRECTORIES' at line 70 of file Doxyfile has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" Warning: Tag `HTML_ALIGN_MEMBERS' at line 164 of file Doxyfile has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" Warning: Tag `MAX_DOT_GRAPH_WIDTH' at line 265 of file Doxyfile has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" Warning: Tag `MAX_DOT_GRAPH_HEIGHT' at line 266 of file Doxyfile has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" Notice: Output directory `/home/AstroSoft/DiFX2.4.1/doc/mpifxcorr/' does not exist. I have created it for you. Searching for include files... Searching for example files... Searching for images... Searching for dot files... Searching for msc files... Searching for files to exclude Searching for files to process... Searching for files in directory /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src Reading and parsing tag files Parsing files Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/alert.cpp... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/alert.cpp... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/alert.h... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/alert.h... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/architecture.h... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/architecture.h... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/configuration.cpp... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/configuration.cpp... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/configuration.h... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/configuration.h... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/core.cpp... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/core.cpp... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/core.h... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/core.h... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/datamuxer.cpp... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/datamuxer.cpp... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/datamuxer.h... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/datamuxer.h... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/datastream.cpp... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/datastream.cpp... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/datastream.h... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/datastream.h... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/fxmanager.cpp... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/fxmanager.cpp... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/fxmanager.h... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/fxmanager.h... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mark5bfile.cpp... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mark5bfile.cpp... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mark5bfile.h... /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mark5bfile.h:58: warning: include file vector not found, perhaps you forgot to add its directory to INCLUDE_PATH? Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mark5bfile.h... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mark5bmark5.cpp... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mark5bmark5.cpp... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mark5bmark5.h... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mark5bmark5.h... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mark5bmark5_stubs.cpp... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mark5bmark5_stubs.cpp... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mark5dir.cpp... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mark5dir.cpp... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mark5dir.h... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mark5dir.h... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mark5directorystructs.cpp... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mark5directorystructs.cpp... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mark5directorystructs.h... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mark5directorystructs.h... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mark5utils.cpp... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mark5utils.cpp... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mark5utils.h... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mark5utils.h... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mk5.cpp... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mk5.cpp... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mk5.h... /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mk5.h:56: warning: include file vector not found, perhaps you forgot to add its directory to INCLUDE_PATH? Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mk5.h... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mk5mode.cpp... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mk5mode.cpp... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mk5mode.h... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mk5mode.h... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mode.cpp... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mode.cpp... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mode.h... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mode.h... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/model.cpp... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/model.cpp... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/model.h... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/model.h... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mpifxcorr.cpp... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mpifxcorr.cpp... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mpifxcorr.h... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mpifxcorr.h... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/nativemk5.cpp... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/nativemk5.cpp... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/nativemk5.h... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/nativemk5.h... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/nativemk5_stubs.cpp... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/nativemk5_stubs.cpp... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/pcal.cpp... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/pcal.cpp... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/pcal.h... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/pcal.h... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/pcal_impl.h... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/pcal_impl.h... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/polyco.cpp... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/polyco.cpp... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/polyco.h... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/polyco.h... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/pthreadbarrier.h... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/pthreadbarrier.h... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/switchedpower.cpp... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/switchedpower.cpp... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/switchedpower.h... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/switchedpower.h... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/vdiffake.cpp... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/vdiffake.cpp... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/vdiffake.h... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/vdiffake.h... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/vdiffile.cpp... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/vdiffile.cpp... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/vdiffile.h... /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/vdiffile.h:57: warning: include file vector not found, perhaps you forgot to add its directory to INCLUDE_PATH? Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/vdiffile.h... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/vdifmark5.cpp... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/vdifmark5.cpp... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/vdifmark5.h... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/vdifmark5.h... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/vdifmark5_stubs.cpp... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/vdifmark5_stubs.cpp... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/vdifnetwork.cpp... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/vdifnetwork.cpp... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/vdifnetwork.h... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/vdifnetwork.h... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/visibility.cpp... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/visibility.cpp... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/visibility.h... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/visibility.h... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/watchdog.cpp... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/watchdog.cpp... Preprocessing /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/watchdog.h... Parsing file /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/watchdog.h... Building group list... Building directory list... Building namespace list... Building file list... Building class list... Associating documentation with classes... Computing nesting relations for classes... Building example list... Searching for enumerations... Searching for documented typedefs... Searching for members imported via using declarations... Searching for included using directives... Searching for documented variables... Building interface member list... Building member list... Searching for friends... Searching for documented defines... Computing class inheritance relations... Computing class usage relations... Flushing cached template relations that have become invalid... Creating members for template instances... Computing class relations... Add enum values to enums... Searching for member function documentation... /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mark5bmark5.cpp:176: warning: documented symbol `void Mark5BMark5DataStream::mark5threadfunction' was not declared or defined. /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mark5bmark5.cpp:340: warning: documented symbol `void * Mark5BMark5DataStream::launchmark5threadfunction' was not declared or defined. /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mark5bmark5.cpp:685: warning: no uniquely matching class member found for int Mark5BMark5DataStream::dataRead(int buffersegment)
/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mark5bmark5.cpp:913: warning: no uniquely matching class member found for void Mark5BMark5DataStream::loopfileread()
/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mark5bmark5.cpp:1027: warning: documented symbol `void Mark5BMark5DataStream::servoMark5' was not declared or defined. /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/vdifmark5.cpp:172: warning: documented symbol `void VDIFMark5DataStream::mark5threadfunction' was not declared or defined. /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/vdifmark5.cpp:310: warning: documented symbol `void * VDIFMark5DataStream::launchmark5threadfunction' was not declared or defined. /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/vdifmark5.cpp:659: warning: no uniquely matching class member found for int VDIFMark5DataStream::dataRead(int buffersegment)
/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/vdifmark5.cpp:903: warning: no uniquely matching class member found for void VDIFMark5DataStream::loopfileread()
/home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/vdifmark5.cpp:1007: warning: documented symbol `void VDIFMark5DataStream::servoMark5' was not declared or defined. Building page list... Search for main page... Computing page relations... Determining the scope of groups... Sorting lists... Freeing entry tree Determining which enums are documented Computing member relations... Building full member lists recursively... Adding members to member groups. Computing member references... Inheriting documentation... Generating disk names... Adding source references... Adding xrefitems... Sorting member lists... Computing dependencies between directories... Generating citations page... Counting data structures... Resolving user defined references... Finding anchors and sections in the documentation... Transferring function references... Combining using relations... Adding members to index pages... Generating style sheet... Generating example documentation... Generating file sources... Generating file documentation... Generating docs for file src/alert.cpp... Generating docs for file src/alert.h... Generating docs for file src/architecture.h... Generating docs for file src/configuration.cpp... Generating docs for file src/configuration.h... Generating docs for file src/core.cpp... Generating docs for file src/core.h... Generating docs for file src/datamuxer.cpp... Generating docs for file src/datamuxer.h... Generating docs for file src/datastream.cpp... Generating docs for file src/datastream.h... Generating docs for file src/fxmanager.cpp... Generating docs for file src/fxmanager.h... Generating docs for file src/mark5bfile.cpp... Generating docs for file src/mark5bfile.h... Generating docs for file src/mark5bmark5.cpp... Generating docs for file src/mark5bmark5.h... Generating docs for file src/mark5bmark5_stubs.cpp... Generating docs for file src/mark5dir.cpp... Generating docs for file src/mark5dir.h... Generating docs for file src/mark5directorystructs.cpp... Generating docs for file src/mark5directorystructs.h... Generating docs for file src/mark5utils.cpp... Generating docs for file src/mark5utils.h... Generating docs for file src/mk5.cpp... Generating docs for file src/mk5.h... Generating docs for file src/mk5mode.cpp... Generating docs for file src/mk5mode.h... Generating docs for file src/mode.cpp... Generating docs for file src/mode.h... Generating docs for file src/model.cpp... Generating docs for file src/model.h... Generating docs for file src/mpifxcorr.cpp... Generating docs for file src/mpifxcorr.h... Generating docs for file src/nativemk5.cpp... Generating docs for file src/nativemk5.h... Generating docs for file src/nativemk5_stubs.cpp... Generating docs for file src/pcal.cpp... Generating docs for file src/pcal.h... Generating docs for file src/pcal_impl.h... Generating docs for file src/polyco.cpp... Generating docs for file src/polyco.h... Generating docs for file src/pthreadbarrier.h... Generating docs for file src/switchedpower.cpp... Generating docs for file src/switchedpower.h... Generating docs for file src/vdiffake.cpp... Generating docs for file src/vdiffake.h... Generating docs for file src/vdiffile.cpp... Generating docs for file src/vdiffile.h... Generating docs for file src/vdifmark5.cpp... Generating docs for file src/vdifmark5.h... Generating docs for file src/vdifmark5_stubs.cpp... Generating docs for file src/vdifnetwork.cpp... Generating docs for file src/vdifnetwork.h... Generating docs for file src/visibility.cpp... Generating docs for file src/visibility.h... Generating docs for file src/watchdog.cpp... Generating docs for file src/watchdog.h... Generating page documentation... Generating group documentation... Generating class documentation... Generating docs for compound Alert... Generating docs for compound Configuration... Generating docs for nested compound Configuration::baselinedata... Generating docs for nested compound Configuration::configdata... Generating docs for nested compound Configuration::datastreamdata... Generating docs for nested compound Configuration::freqdata... Generating docs for nested compound Configuration::ruledata... Generating docs for nested compound Configuration::telescopedata... Generating docs for compound Core... Generating docs for nested compound Core::processslot... Generating docs for nested compound Core::processthreadinfo... Generating docs for nested compound Core::threadscratchspace... Generating docs for compound DataMuxer... Generating docs for compound DataStream... Generating docs for nested compound DataStream::readinfo... Generating docs for compound DriveInformation... Generating docs for compound FxManager... Generating docs for compound LBA16BitMode... Generating docs for compound LBA8BitMode... Generating docs for compound LBAMode... Generating docs for compound Mark5BDataStream... Generating docs for compound Mark5BMark5DataStream... Generating docs for compound Mark5DirectoryHeaderVer1... Generating docs for compound Mark5DirectoryInfo... Generating docs for compound Mark5DirectoryLegacyBodyVer1... Generating docs for compound Mark5DirectoryScanHeaderVer1... Generating docs for compound Mark5DirectoryVDIFBodyVer1... Generating docs for compound Mark5LegacyDirectory... Generating docs for compound Mark5Module... Generating docs for compound Mark5NeoLegacyDirectory... Generating docs for compound Mark5Scan... Generating docs for compound Mk5DataStream... Generating docs for compound Mk5Mode... /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/mk5mode.h:36: warning: The following parameters of Mk5Mode::Mk5Mode(Configuration *conf, int confindex, int dsindex, int recordedbandchan, int chanstoavg, int bpersend, int gsamples, int nrecordedfreqs, double recordedbw, double *recordedfreqclkoffs, double *recordedfreqclkoffsdelta, double *recordedfreqphaseoffs, double *recordedfreqlooffs, int nrecordedbands, int nzoombands, int nbits, Configuration::datasampling sampling, Configuration::complextype tcomplex, bool fbank, bool linear2circular, int fringerotorder, int arraystridelen, bool cacorrs, int framebytes, int framesamples, Configuration::dataformat format) are not documented: parameter 'recordedfreqclkoffsdelta' parameter 'recordedfreqphaseoffs' Generating docs for compound Mode... Generating docs for compound Model... Generating docs for nested compound Model::eop... Generating docs for nested compound Model::scan... Generating docs for nested compound Model::source... Generating docs for nested compound Model::spacecraft... Generating docs for nested compound Model::station... Generating docs for compound NativeMk5DataStream... Generating docs for compound PCal... /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/pcal.cpp:252: warning: argument 'pcalout' of command @param is not found in the argument list of PCal::extractAndIntegrate_reference(f32 const *data, const size_t len, cf32 *out, const uint64_t sampleoffset) Generating docs for compound pcal_config_pimpl... Generating docs for compound PCalExtractorComplex... Generating docs for compound PCalExtractorDummy... /home/leo/Downloads/DiFX_Install/DiFX-2.4.1/mpifxcorr/src/pcal.cpp:1248: warning: argument 'pointer' of command @param is not found in the argument list of PCalExtractorDummy::getFinalPCal(cf32 *out) Generating docs for compound PCalExtractorImplicitShift... Generating docs for compound PCalExtractorShifting... Generating docs for compound PCalExtractorTrivial... Generating docs for compound Polyco... Generating docs for compound pthread_barrier_t... Generating docs for compound SwitchedPower... Generating docs for compound VDIFDataStream... Generating docs for compound VDIFFakeDataStream... Generating docs for compound VDIFMark5DataStream... Generating docs for compound VDIFMuxer... Generating docs for compound VDIFNetworkDataStream... Generating docs for compound Visibility... Generating namespace index... Generating docs for namespace fxcorr Generating graph info page... Generating directory documentation... Generating index page... Generating page index... Generating module index... Generating namespace index... Generating namespace member index... Generating annotated compound index... Generating alphabetical compound index... Generating hierarchical class index... Generating member index... Generating file index... Generating file member index... Generating example index... finalizing index lists... lookup cache used 2381/65536 hits=8086 misses=2456 finished... Done! '''
|