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 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566
|
#!/bin/bash
# CPPTRAJ standalone configure script.
# Daniel R. Roe
# 2010-11-18
# Rewritten 2018-01-25 (getting old...)
# Support for getting and building external libraries (get_library.sh) added 2021-03-03
# This script will determine compiler and linker flags based on
# desired user-specified options. Generates config.h, which is
# used by src/Makefile.
#-------------------------------------------------------------------------------
# Print simple help message
UsageSimple() {
echo "Usage: ./configure <OPTIONS> [gnu | intel | pgi | clang | cray]"
echo " OPTIONS:"
echo " --help : Display this message."
echo " --prefix <dir> : Install CPPTRAJ to specified directory (default is this directory)."
echo " -openmp : Use OpenMP for parallelization of certain routines."
echo " -mpi : Use mpicc/mpicxx to compile."
echo " -intelmpi : Use mpiicc/mpiicpc to compile."
echo " -cuda : Enable CUDA support. See SHADER_MODEL in --full-help for more info."
echo " -cray : Use cray compiler wrappers (cc/CC/ftn)."
echo " -amberlib : Use BLAS/ARPACK/LAPACK/NetCDF libraries from \$AMBERHOME"
echo " --full-help : Display additional options."
echo ""
}
#-------------------------------------------------------------------------------
# Print more detailed options
UsageFull() {
UsageSimple
echo " ADDITIONAL OPTIONS"
echo " -debug : Turn on compiler debugging info."
echo " -noopt : Do not use optimized compiler flags."
echo " -tune : Enable host-specific compiler optimizations."
echo " -noc++11 : Disable C++11 support."
echo " -d : Turn on compiler debug info and disable optimization (i.e. -debug -noopt)."
echo " -timer : Enable additional timing info."
echo " -debugon : Add -DDEBUG flag to activate additional internal debugging."
echo " -nolfs : Do not enable large file support."
echo " -shared : Configure for generating libcpptraj (implies -nosanderlib)."
echo " -fftw3 : Use FFTW instead of pubfft for FFT."
echo " -windows : Set up for use with MinGW compilers for a native Windows build."
echo " LIBRARY OPTIONS"
echo " -<lib> : Enable library."
echo " --with-<lib>=<DIR> : Use library in specified directory."
echo " -l<lib>=<FILE> : Use specified library file."
echo " -no<lib> : Disable library."
echo " --buildlibs : Attempt to build enabled libraries if they are not present."
echo " --nobuildlibs : Do not asking about building enabled libraries."
echo " Libraries: netcdf pnetcdf zlib bzlib blas lapack arpack fftw3 readline sanderlib xdrfile tng openmm"
echo " Note: pnetcdf is needed for writing NetCDF trajectories with MPI."
echo " LINKING OPTIONS"
echo " -static : Use static linking."
echo " -libstatic : Use static linking only for specified libraries."
echo " -mkl : Use Intel MKL for BLAS/LAPACK (requires MKL_HOME/MKLROOT set)."
echo " -nomklfftw : Prevent use of FFTW from MKL."
echo " -openblas : Use OpenBLAS for BLAS/LAPACK (may require '--with-blas' or '-lblas')."
echo " May also want to specify '-larpack' if included in OpenBLAS."
echo " -macAccelerate : Use Accelerate framework for BLAS/LAPACK."
echo " -libsci : Use Cray LibSci for BLAS/LAPACK."
echo " ENVIRONMENT VARIABLES (can also be passed to configure as <VAR>=<VALUE>):"
echo " CXX : Name of the C++ compiler."
echo " CC : Name of the C compiler."
echo " FC : Name of the Fortran compiler."
echo " MPICXX : Name of MPI C++ compiler."
echo " MPICC : Name of MPI C compiler."
echo " MPIF90 : Name of MPI Fortran compiler."
echo " CXXFLAGS : Flags to pass to the C++ compiler."
echo " CFLAGS : Flags to pass to the C compiler."
echo " FFLAGS : Flags to pass to the Fortran compiler."
echo " LDFLAGS : Flags to pass to the linker."
echo " TUNEFLAGS : Host-specific tuning flags. Will override '-tune'."
echo " NVCC : Name of the nvcc compiler."
echo " NVCCFLAGS : Flags to pass to the nvcc compiler."
echo " DBGFLAGS : Any additional flags to pass to all compilers."
echo " SHADER_MODEL : (-cuda) Should be set to 'sm_XX', where XX is CUDA compute architecture."
echo " SM6.2 = GP10B"
echo " SM6.1 = GP106 = GTX-1070, GP104 = GTX-1080, GP102 = Titan-X[P]"
echo " SM6.0 = GP100 / P100 = DGX-1"
echo " SM5.3 = GM200 [Grid] = M60, M40?"
echo " SM5.2 = GM200 = GTX-Titan-X, M6000 etc."
echo " SM5.0 = GM204 = GTX980, 970 etc"
echo " SM3.7 = GK210 = K80"
echo " SM3.5 = GK110 = K20[x], K40, GTX780, GTX-Titan, GTX-Titan-Black, GTX-Titan-Z"
echo " SM3.0 = GK104 = K10, GTX680, 690 etc."
echo " SM2.0 = All GF variants = C2050, 2075, M2090, GTX480, GTX580 etc."
echo " EXPERIMENTAL OPTIONS:"
echo " --compile-verbose : Turn on compile details."
echo " -profile : Use Gnu compiler profiling (>= V4.5)*"
echo " -gprofile : Use Gnu compiler GLIBC profiling (>= V4.5)*"
echo " -vtune : Enable options for use with Intel Vtune."
echo " -single-ensemble : Enable support for reading/writing single ensemble trajectories."
echo ""
echo "*NOTE: -profile and -gprofile are mutually exclusive."
echo ""
}
# ----- Script variables -------------------------------------------------------
WORKDIR=`dirname $0` # Working directory of the configure script
CURRENTDIR=`pwd` # Directory configure is being executed in
COMPILERS='' # User-specified compiler suite to use.
FLINK='' # Flag for linking in Fortran code
REQUIRES_FLINK=0 # If 1 FLINK flag required during link phase
REQUIRES_PTHREAD=0 # If 1 -lpthread required during link phase
C11FLAG='' # Flag for compiling C++11 code
C11_SUPPORT='yes' # Support C++11 code
SHARED_SUFFIX='' # Suffix for shared libraries
DBFLAG='' # Flag for turning on compiler debug symbols
DIRECTIVES='' # Common compiler directives
INCLUDE='' # Library header include line
SFX='' # Binary suffix
EXE='' # Binary executable suffix
REBUILDOPT='' # Can be set to --rebuild and passed to get_library.sh
BUILDTESTOPT='silent' # Set to blank to avoid asking about building libraries
INSTALL_DAT='install_dat' # Target for installing data directory
#CPPTRAJSRC='' # CPPTRAJ source directory
COMPERR='cpptrajcfg.compile.err'
COMPOUT='cpptrajcfg.compile.out'
# ----- Variables for downloading libraries ------
NETCDF_SRCTAR='netcdf-4.6.1.tar.gz'
NETCDF_SRCDIR='netcdf-4.6.1'
NETCDF_URL="ftp://ftp.unidata.ucar.edu/pub/netcdf/$NETCDF_SRCTAR"
NETCDF_OPTS=" --disable-netcdf-4 --disable-dap $windows_hostflag --disable-shared --disable-doxygen"
BZIP2_SRCTAR='bzip2-latest.tar.gz'
BZIP2_SRCDIR=''
BZIP2_URL="https://www.sourceware.org/pub/bzip2/$BZIP2_SRCTAR"
BZIP2_OPTS=''
ZLIB_SRCTAR='zlib-1.2.11.tar.gz'
ZLIB_SRCDIR='zlib-1.2.11'
ZLIB_URL="https://zlib.net/$ZLIB_SRCTAR"
ZLIB_OPTS=''
OPENBLAS_SRCTAR='OpenBLAS-0.3.13.tar.gz'
OPENBLAS_SRCDIR='OpenBLAS-0.3.13'
OPENBLAS_URL="https://github.com/xianyi/OpenBLAS/releases/download/v0.3.13/$OPENBLAS_SRCTAR"
OPENBLAS_OPTS=''
LAPACK_SRCTAR='v3.9.0.tar.gz'
LAPACK_SRCDIR='lapack-3.9.0'
LAPACK_URL="https://github.com/Reference-LAPACK/lapack/archive/$LAPACK_SRCTAR"
LAPACK_OPTS=''
PNETCDF_SRCTAR='pnetcdf-1.12.2.tar.gz'
PNETCDF_SRCDIR=''
PNETCDF_URL="https://parallel-netcdf.github.io/Release/$PNETCDF_SRCTAR"
PNETCDF_OPTS='--disable-fortran --disable-cxx'
FFTW_SRCTAR='fftw-3.3.9.tar.gz'
FFTW_SRCDIR='fftw-3.3.9'
FFTW_URL="ftp://ftp.fftw.org/pub/fftw/$FFTW_SRCTAR"
FFTW_OPTS='--enable-threads --with-combined-threads --with-pic --disable-fortran'
# ----- Configure options ------------------------
USE_CMAKE=0 # 1 = use cmake for build
COMPILE_VERBOSE=0 # 1 = show details during compile
USE_MPI=0 # 0 = no MPI, 1 = mpicc etc, 2 = mpiicc etc
USE_OPENMP=0 # 0 = no OpenMP, 1 = OpenMP
USE_CUDA=0 # 0 = no CUDA, 1 = CUDA
USE_OPT=1 # 0 = no optimization, 1 = use compiler optimizations, 2 = optimize/tune.
BLAS_TYPE='other' # none|mkl|libsci(cray)|openblas|macAccelerate|other=normal BLAS
MKL_TYPE='mkl' # mkl = -mkl for Intel compilers, line = link-line advisor style
MKL_FFTW='' # If yes, use FFTW from MKL if not otherwise specified. If 'no' prevent this.
USE_DEBUG=0 # 0 = no debug info, 1 = enable compiler debug info
USE_STATIC=0 # 0 = dynamic linking, 1 = static linking, 2 = static link for specified libraries
USE_SHARED=0 # 1 = Use flag for position-independent code (required for libcpptraj)
USE_PROFILE=0 # 0 = no profiling, 1 = C++ profiling, 2 = GLIBC profiling, 3 = Intel Vtune
USE_AMBERLIB=0 # 1 = Use AMBERHOME to fill in NetCDF/BLAS/LAPACK/ARPACK as needed
BUILD_LIBS=0 # 1 = Means automatically say yes to building enabled libs when not present.
USE_SINGLEENSEMBLE=0 # Enable support for single ensemble trajectories
USE_CPPTRAJDEBUG=0 # Enable internal cpptraj debug flags
CLEAN='yes' # yes = clean after configure, no = do not
PERFORM_CHECKS='yes' # yes = Check compilers/libraries, no = do not
# Flags for large file support
LFS='-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
# Install locations
CPPTRAJHOME=''
CPPTRAJBIN=''
CPPTRAJLIB=''
CPPTRAJINC=''
CPPTRAJDAT=''
# ----- External Libraries -----------------------
# Library indices
# Original: FFT ARPACK LAPACK BLAS NETCDF PARANC BZIP ZIP READLINE XDRFILE
# Libraries containing definition of a function should appear *after*
# any source files or object files which use it.
LNETCDF=0
LPARANC=1 # Parallel NetCDF
LBZIP=2
LTNGFILE=3 # This has to come before ZLIB since it depends on ZLIB
LZIP=4
LARPACK=5
LLAPACK=6
LBLAS=7
LFFTW3=8
LREADLINE=9
LXDRFILE=10
LSANDER=11
LTIMER=12
LCUDA=13
LOPENMM=14
# Total number of external libraries
NLIB=15
# LIB_STAT = Library status:
# off : Do not use library.
# enabled : Try to use library.
# specified : Library directory has been specified.
# amberopt : Use library from AMBERHOME - optional.
# bundled : Use bundled version of library.
# direct : Library location directly specified.
LIB_STAT[$LNETCDF]='enabled' # off, enabled, specified, amberopt, bundled, direct
LIB_CKEY[$LNETCDF]='netcdf' # Command-line key for '-', '--with-' and '-no'
LIB_HOME[$LNETCDF]='' # Library home directory (-L<home>)
LIB_FLAG[$LNETCDF]='-lnetcdf' # Library linker flag
LIB_STTC[$LNETCDF]='libnetcdf.a' # Expected static location relative to home
LIB_D_ON[$LNETCDF]='-DBINTRAJ' # Directive if library on
LIB_DOFF[$LNETCDF]='' # Directive if library off
LIB_LINK[$LNETCDF]='dynamic' # How to link the library
LIB_TYPE[$LNETCDF]='ld' # ld = LDFLAGS, cpp = cpptraj, blank = special
LIB_STAT[$LPARANC]='off'
LIB_CKEY[$LPARANC]='pnetcdf'
LIB_HOME[$LPARANC]=''
LIB_FLAG[$LPARANC]='-lpnetcdf'
LIB_STTC[$LPARANC]='libpnetcdf.a'
LIB_D_ON[$LPARANC]='-DHAS_PNETCDF'
LIB_DOFF[$LPARANC]=''
LIB_TYPE[$LPARANC]='ld'
LIB_STAT[$LBZIP]='enabled'
LIB_CKEY[$LBZIP]='bzlib'
LIB_HOME[$LBZIP]=''
LIB_FLAG[$LBZIP]='-lbz2'
LIB_STTC[$LBZIP]='libbz2.a'
LIB_D_ON[$LBZIP]='-DHASBZ2'
LIB_DOFF[$LBZIP]=''
LIB_TYPE[$LBZIP]='ld'
LIB_STAT[$LZIP]='enabled'
LIB_CKEY[$LZIP]='zlib'
LIB_HOME[$LZIP]=''
LIB_FLAG[$LZIP]='-lz'
LIB_STTC[$LZIP]='libz.a'
LIB_D_ON[$LZIP]='-DHASGZ'
LIB_DOFF[$LZIP]=''
LIB_TYPE[$LZIP]='ld'
LIB_STAT[$LBLAS]='enabled'
LIB_CKEY[$LBLAS]='blas'
LIB_HOME[$LBLAS]=''
LIB_FLAG[$LBLAS]='-lblas'
LIB_STTC[$LBLAS]='libblas.a'
LIB_D_ON[$LBLAS]=''
LIB_DOFF[$LBLAS]='-DNO_MATHLIB'
LIB_TYPE[$LBLAS]='cpp'
LIB_STAT[$LLAPACK]='enabled'
LIB_CKEY[$LLAPACK]='lapack'
LIB_HOME[$LLAPACK]=''
LIB_FLAG[$LLAPACK]='-llapack'
LIB_STTC[$LLAPACK]='liblapack.a'
LIB_D_ON[$LLAPACK]=''
LIB_DOFF[$LLAPACK]=''
LIB_TYPE[$LLAPACK]='cpp'
LIB_STAT[$LARPACK]='bundled'
LIB_CKEY[$LARPACK]='arpack'
LIB_HOME[$LARPACK]='arpack'
LIB_FLAG[$LARPACK]='-larpack'
LIB_STTC[$LARPACK]='libarpack.a'
LIB_D_ON[$LARPACK]=''
LIB_DOFF[$LARPACK]='-DNO_ARPACK'
LIB_TYPE[$LARPACK]='cpp'
LIB_STAT[$LFFTW3]='off'
LIB_CKEY[$LFFTW3]='fftw3'
LIB_HOME[$LFFTW3]=''
LIB_FLAG[$LFFTW3]='-lfftw3'
LIB_STTC[$LFFTW3]='libfftw3.a'
LIB_D_ON[$LFFTW3]='-DFFTW_FFT'
LIB_DOFF[$LFFTW3]=''
LIB_TYPE[$LFFTW3]='cpp'
LIB_STAT[$LREADLINE]='bundled'
LIB_CKEY[$LREADLINE]='readline'
LIB_HOME[$LREADLINE]='readline'
LIB_FLAG[$LREADLINE]='-lreadline'
LIB_STTC[$LREADLINE]='libreadline.a'
LIB_D_ON[$LREADLINE]=''
LIB_DOFF[$LREADLINE]='-DNO_READLINE'
LIB_TYPE[$LREADLINE]=''
LIB_STAT[$LXDRFILE]='bundled'
LIB_CKEY[$LXDRFILE]='xdrfile'
LIB_HOME[$LXDRFILE]='xdrfile'
LIB_FLAG[$LXDRFILE]='-lxdrfile'
LIB_STTC[$LXDRFILE]='libxdrfile.a'
LIB_D_ON[$LXDRFILE]=''
LIB_DOFF[$LXDRFILE]='-DNO_XDRFILE'
LIB_TYPE[$LXDRFILE]='ld'
LIB_STAT[$LSANDER]='amberopt'
LIB_CKEY[$LSANDER]='sanderlib'
LIB_HOME[$LSANDER]=''
LIB_FLAG[$LSANDER]='-lsander'
LIB_STTC[$LSANDER]=''
LIB_D_ON[$LSANDER]='-DUSE_SANDERLIB'
LIB_DOFF[$LSANDER]=''
LIB_TYPE[$LSANDER]='cpp'
LIB_STAT[$LTIMER]='off'
LIB_CKEY[$LTIMER]='timer'
LIB_FLAG[$LTIMER]='-lrt'
LIB_D_ON[$LTIMER]='-DTIMER'
LIB_TYPE[$LTIMER]='ld'
LIB_STAT[$LCUDA]='off'
LIB_CKEY[$LCUDA]='cuda'
LIB_HOME[$LCUDA]=''
LIB_FLAG[$LCUDA]='-lcudart'
LIB_STTC[$LCUDA]=''
LIB_D_ON[$LCUDA]='-DCUDA'
LIB_DOFF[$LCUDA]=''
LIB_TYPE[$LCUDA]='cpp'
LIB_STAT[$LTNGFILE]='bundled'
LIB_CKEY[$LTNGFILE]='tng'
LIB_HOME[$LTNGFILE]='tng'
LIB_FLAG[$LTNGFILE]='-ltng_io'
LIB_STTC[$LTNGFILE]='libtng_io.a'
LIB_D_ON[$LTNGFILE]='-DHAS_TNGFILE'
LIB_DOFF[$LTNGFILE]=''
LIB_TYPE[$LTNGFILE]='ld'
LIB_STAT[$LOPENMM]='off'
LIB_CKEY[$LOPENMM]='openmm'
LIB_HOME[$LOPENMM]=''
LIB_FLAG[$LOPENMM]='-lOpenMM'
LIB_STTC[$LOPENMM]=''
LIB_D_ON[$LOPENMM]='-DHAS_OPENMM'
LIB_DOFF[$LOPENMM]=''
LIB_TYPE[$LOPENMM]='cpp'
for ((i=0; i < $NLIB; i++)) ; do
LIB_LINK[$i]='dynamic'
done
#-------------------------------------------------------------------------------
# Print error message to stderr
ErrMsg() {
>&2 echo "Error: $*"
}
#-------------------------------------------------------------------------------
# Print error message to stderr and exit.
Err() {
ErrMsg $*
exit 1
}
#-------------------------------------------------------------------------------
# Print warning message to stderr
WrnMsg() {
>&2 echo "Warning: $*"
}
#-------------------------------------------------------------------------------
# Check for '--with' and '-no' library keys.
CheckLibraryKeys() {
for ((i=0; i < $NLIB; i++)) ; do
LKEY="-"${LIB_CKEY[$i]}
if [ "$1" = "$LKEY" ] ; then
# If previously bundled, clear home
if [ "${LIB_STAT[$i]}" = 'bundled' ] ; then
LIB_HOME[$i]=''
fi
LIB_STAT[$i]='enabled'
echo " ${LIB_CKEY[$i]} enabled."
return 0
fi
LKEY="--with-"${LIB_CKEY[$i]}
if [ "$1" = "$LKEY" ] ; then
LIB_HOME[$i]=$2
LIB_STAT[$i]='specified'
echo " ${LIB_CKEY[$i]} specified: $2"
return 0
fi
LKEY="-no"${LIB_CKEY[$i]}
if [ "$1" = "$LKEY" ] ; then
LIB_STAT[$i]='off'
echo " ${LIB_CKEY[$i]} disabled."
return 0
fi
LKEY="-l"${LIB_CKEY[$i]}
if [ "$1" = "$LKEY" ] ; then
LIB_STAT[$i]='direct'
LIB_FLAG[$i]=$2
echo " ${LIB_CKEY[$i]} location directly specified: $2"
return 0
fi
done
return 1
}
#-------------------------------------------------------------------------------
# Test compile and run a program.
# ARGS: [noexe|silent|quiet] <description> <compiler> <args> <file> [<link>]
TestProgram() {
if [ $BUILD_LIBS -eq 0 ] ; then
REBUILDOPT=''
else
REBUILDOPT='--rebuild'
fi
if [ "$1" = 'noexe' ] ; then
# Output messages, do not execute compiled binary
silent=3
shift
elif [ "$1" = 'quiet' ] ; then
# Output nothing.
silent=2
shift
elif [ "$1" = 'silent' ] ; then
# Output messages but return 1 instead of exit 1
silent=1
shift
else
# Output message; exit on error
silent=0
fi
desc="$1"
comp="$2"
args="$3"
file="$4"
link="$5 $LDFLAGS"
if [ $silent -ne 2 ] ; then echo -n "$desc: " ; fi
COMPILELINE="$comp $args -o testp $file $link"
#echo "COMPILE: $COMPILELINE" #DEBUG
$COMPILELINE > $COMPOUT 2> $COMPERR
if [ $? -ne 0 -o ! -f 'testp' ] ; then
if [ $silent -eq 0 ] ; then
echo ""
ErrMsg "Test compile failed: $COMPILELINE"
ErrMsg "Check the output below for error messages:"
cat $COMPERR >&2
exit 1
else
COMPILE_ERROR_LINE=$COMPILELINE
COMPILE_ERROR_MESSAGE=`cat $COMPERR`
rm $COMPERR $COMPOUT
return 1
fi
fi
if [ $silent -ne 3 ] ; then
./testp > prog.out
if [ $? -ne 0 ] ; then
echo ""
Err "Run of test program failed, compiled with: $COMPILELINE"
fi
rm prog.out
fi
if [ $silent -ne 2 ] ; then echo "OK" ; fi
rm -f $file testp $COMPERR
return 0
}
# Error message for TestProgram silent
TestProgErr() {
desc=$1
echo "Failed."
ErrMsg "$1 build/link failed: $COMPILE_ERROR_LINE"
ErrMsg "Error message follows:"
ErrMsg "$COMPILE_ERROR_MESSAGE"
exit 1
}
# This is invoked if linking a bundled library fails.
CheckRebuild() {
desc=$1
libfile=$2
if [ -z "$REBUILDOPT" -a -f "$libfile" ] ; then
echo "Bundled $desc present but needs to be rebuilt."
REBUILDOPT='--rebuild'
fi
}
# ===== LIBRARY TESTS ==========================================================
TestBzlib() {
cat > testp.cpp <<EOF
#include <cstdio>
#include "bzlib.h"
int main() { BZFILE *bfile; bfile=NULL; printf("Testing\n"); return 0; }
EOF
TestProgram silent " Checking BZLIB" "$CXX" "$CXXFLAGS ${LIB_INCL[$LBZIP]}" testp.cpp "${LIB_FLAG[$LBZIP]}"
if [ $? -ne 0 ] ; then
if [ "${LIB_STAT[$LBZIP]}" = 'enabled' ] ; then
# See if there is already a version of BZIP2 in CPPTRAJHOME
LIB_STAT[$LBZIP]='specified'
LIB_HOME[$LBZIP]=$CPPTRAJHOME
LIB_FLAG[$LBZIP]=$CPPTRAJHOME/lib/${LIB_STTC[$LBZIP]}
LIB_INCL[$LBZIP]="-I$CPPTRAJHOME/include"
TestProgram $BUILDTESTOPT " Checking for bundled Bzip2" "$CXX" "$CXXFLAGS ${LIB_INCL[$LBZIP]}" testp.cpp "${LIB_FLAG[$LBZIP]}"
if [ $? -ne 0 ] ; then
CheckRebuild "Bzip2" "${LIB_FLAG[$LBZIP]}"
# See if user would like to get Bzip2
PREFIX=$CPPTRAJHOME CC=$CC CFLAGS=$CFLAGS LIBNAME='bzip2' \
SRCDIR=$BZIP2_SRCDIR SRCTAR=$BZIP2_SRCTAR URL=$BZIP2_URL ./get_library.sh $REBUILDOPT $BZIP2_OPTS
if [ $? -ne 0 ] ; then
ErrMsg "Building Bzip2 failed."
exit 1
fi
# Test the built Bzip2
TestProgram " Checking built Bzip2" "$CXX" "$CXXFLAGS ${LIB_INCL[$LBZIP]}" testp.cpp "${LIB_FLAG[$LBZIP]}"
fi
else
# Bzip2 specified but failed.
TestProgErr "Bzip2"
fi
fi
}
TestZlib() {
cat > testp.cpp <<EOF
#include <cstdio>
#include "zlib.h"
int main() { gzFile gfile; gfile=NULL; printf("Testing\n"); return 0; }
EOF
TestProgram silent " Checking ZLIB" "$CXX" "$CXXFLAGS ${LIB_INCL[$LZIP]}" testp.cpp "${LIB_FLAG[$LZIP]}"
if [ $? -ne 0 ] ; then
if [ "${LIB_STAT[$LZIP]}" = 'enabled' ] ; then
# See if there is already a version of ZLIB in CPPTRAJHOME
LIB_STAT[$LZIP]='specified'
LIB_HOME[$LZIP]=$CPPTRAJHOME
LIB_FLAG[$LZIP]=$CPPTRAJHOME/lib/${LIB_STTC[$LZIP]}
LIB_INCL[$LZIP]="-I$CPPTRAJHOME/include"
TestProgram $BUILDTESTOPT " Checking for bundled ZLIB" "$CXX" "$CXXFLAGS ${LIB_INCL[$LZIP]}" testp.cpp "${LIB_FLAG[$LZIP]}"
if [ $? -ne 0 ] ; then
CheckRebuild "ZLIB" "${LIB_FLAG[$LZIP]}"
# See if user would like to get ZLIB
PREFIX=$CPPTRAJHOME CC=$CC CFLAGS=$CFLAGS LIBNAME='zlib' \
SRCDIR=$ZLIB_SRCDIR SRCTAR=$ZLIB_SRCTAR URL=$ZLIB_URL ./get_library.sh $REBUILDOPT $ZLIB_OPTS
if [ $? -ne 0 ] ; then
ErrMsg "Building ZLIB failed."
exit 1
fi
# Test the built ZLIB
TestProgram " Checking built ZLIB" "$CXX" "$CXXFLAGS ${LIB_INCL[$LZIP]}" testp.cpp "${LIB_FLAG[$LZIP]}"
fi
else
# ZLIB specified but failed.
TestProgErr "ZLIB"
fi
fi
}
TestNetcdf() {
cat > testp.cpp <<EOF
#include <cstdio>
#include "netcdf.h"
void unused() {int ncid; nc_open("foo.nc", 0, &ncid);}
int main() { printf("Testing\n"); printf("%s\n",nc_strerror(0)); return 0; }
EOF
TestProgram silent " Checking NetCDF" "$CXX" "$CXXFLAGS ${LIB_INCL[$LNETCDF]}" testp.cpp "${LIB_FLAG[$LNETCDF]}"
if [ $? -ne 0 ] ; then
if [ "${LIB_STAT[$LNETCDF]}" = 'enabled' ] ; then
# See if there is already a version of NetCDF in CPPTRAJHOME
LIB_STAT[$LNETCDF]='specified'
LIB_HOME[$LNETCDF]=$CPPTRAJHOME
LIB_FLAG[$LNETCDF]=$CPPTRAJHOME/lib/${LIB_STTC[$LNETCDF]}
LIB_INCL[$LNETCDF]="-I$CPPTRAJHOME/include"
TestProgram $BUILDTESTOPT " Checking for bundled NetCDF" "$CXX" "$CXXFLAGS ${LIB_INCL[$LNETCDF]}" testp.cpp "${LIB_FLAG[$LNETCDF]}"
if [ $? -ne 0 ] ; then
# Check if lib present but needs to be rebuilt
CheckRebuild "NetCDF" "${LIB_FLAG[$LNETCDF]}"
# See if user would like to get netcdf
PREFIX=$CPPTRAJHOME CC=$CC CFLAGS=$CFLAGS LIBNAME='netcdf' \
SRCDIR=$NETCDF_SRCDIR SRCTAR=$NETCDF_SRCTAR URL=$NETCDF_URL ./get_library.sh $REBUILDOPT $NETCDF_OPTS
if [ $? -ne 0 ] ; then
ErrMsg "Building NetCDF failed."
exit 1
fi
# Test the built netcdf
TestProgram " Checking built NetCDF" "$CXX" "$CXXFLAGS ${LIB_INCL[$LNETCDF]}" testp.cpp "${LIB_FLAG[$LNETCDF]}"
fi
else
# NetCDF specified but failed.
TestProgErr "NetCDF"
fi
fi
}
TestPnetcdf() {
cat > testp.cpp <<EOF
#include <cstdio>
#include <pnetcdf.h>
void unused() {int ncid; ncmpi_open(MPI_COMM_WORLD, "foo.nc", NC_NOWRITE, MPI_INFO_NULL, &ncid);}
int main() { printf("Testing\n"); printf("%s\n",ncmpi_strerror(0)); return 0; }
EOF
TestProgram silent " Checking Parallel NetCDF" "$CXX" "$CXXFLAGS ${LIB_INCL[$LPARANC]}" testp.cpp "${LIB_FLAG[$LPARANC]}"
if [ $? -ne 0 ] ; then
if [ "${LIB_STAT[$LPARANC]}" = 'enabled' ] ; then
# See if there is already a version of parallel netcdf in CPPTRAJHOME
LIB_STAT[$LPARANC]='specified'
LIB_HOME[$LPARANC]=$CPPTRAJHOME
LIB_FLAG[$LPARANC]=$CPPTRAJHOME/lib/${LIB_STTC[$LPARANC]}
LIB_INCL[$LPARANC]="-I$CPPTRAJHOME/include"
TestProgram $BUILDTESTOPT " Checking for bundled parallel NetCDF" "$CXX" "$CXXFLAGS ${LIB_INCL[$LPARANC]}" testp.cpp "${LIB_FLAG[$LPARANC]}"
if [ $? -ne 0 ] ; then
CheckRebuild "Pnetcdf" "${LIB_FLAG[$LPARANC]}"
# See if user would like to get parallel netcdf
PREFIX=$CPPTRAJHOME CC=$CC CFLAGS=$CFLAGS LIBNAME='pnetcdf' \
SRCDIR=$PNETCDF_SRCDIR SRCTAR=$PNETCDF_SRCTAR URL=$PNETCDF_URL ./get_library.sh $REBUILDOPT $PNETCDF_OPTS
if [ $? -ne 0 ] ; then
echo "Disabling parallel NetCDF support."
LIB_STAT[$LPARANC]='off'
else
# Test the built parallel netcdf
TestProgram " Checking built parallel NetCDF" "$CXX" "$CXXFLAGS ${LIB_INCL[$LPARANC]}" testp.cpp "${LIB_FLAG[$LPARANC]}"
fi
fi
else
# Parallel NetCDF specified but failed.
TestProgErr "Pnetcdf"
fi
fi
}
DetermineFlink() {
if [ "$1" = 'silent' ] ; then
final_opt='silent'
shift
else
final_opt=''
fi
desc="$1"
flibs="$2"
# Do we already need FLINK?
if [ $REQUIRES_FLINK -eq 0 ] ; then
flink_opts="no yes"
else
flink_opts="yes"
fi
# Go through combinations of FLINK/pthread
flink_success=0
for use_flink in $flink_opts ; do
for use_pthread in no yes ; do
libs_to_use="$flibs"
if [ "$use_flink" = 'yes' ] ; then
libs_to_use="$libs_to_use $FLINK"
fi
if [ "$use_pthread" = 'yes' ] ; then
libs_to_use="$libs_to_use -lpthread"
fi
if [ "$use_flink" = 'yes' -a "$use_pthread" = 'yes' ] ; then
# Final try. Report errors here
report=$final_opt
else
report='quiet'
fi
#echo "DEBUG: Testing $desc flink $use_flink pthread $use_pthread $report"
TestProgram $report "$desc" "$CXX" "$CXXFLAGS" testp.cpp "$libs_to_use"
if [ $? -eq 0 ] ; then
# Compile/run worked.
if [ "$use_flink" = 'yes' ] ; then
REQUIRES_FLINK=1
fi
if [ "$use_pthread" = 'yes' ] ; then
REQUIRES_PTHREAD=1
fi
flink_success=1
if [ "$report" = 'quiet' ] ; then
echo "$desc: OK"
fi
return 0
elif [ "$report" = 'silent' ] ; then
# Final iteration failed
return 1
fi
done
done
if [ $flink_success -eq 0 ] ; then
# Sanity check. Should not make it here.
echo "Error: Unexpected error in DetermineFlink()."
exit 1
fi
return 0
}
TestMathlib() {
cat > testp.cpp <<EOF
#include <cstdio>
extern "C" {
void dsyev_(char*, char*, int&, double*, int&, double*,double*,int&,int&);
void dgemm_(char*, char*, int&, int&, int&, double&,
double*, int&, double*, int&, double&, double*, int&);
}
int main() {
int n_cols = 3, lwork = 102, info;
double work[102], mat[9], vec[3], alpha = 1.0;
mat[0] = 1.0; mat[1] = 1.0; mat[2] = 1.0;
mat[3] = 1.0; mat[4] = 1.0; mat[5] = 1.0;
mat[6] = 1.0; mat[7] = 1.0; mat[8] = 1.0;
dsyev_((char*)"V", (char*)"U", n_cols, mat, n_cols, vec, work, lwork, info);
dgemm_((char*)"N",(char*)"N", n_cols, n_cols, n_cols, alpha,
mat, n_cols, mat, n_cols, alpha, mat, n_cols);
printf("Testing\n"); return 0;
}
EOF
DetermineFlink silent " Checking LAPACK/BLAS" "${LIB_FLAG[$LLAPACK]} ${LIB_FLAG[$LBLAS]}"
if [ $? -ne 0 ] ; then
if [ "${LIB_STAT[$LBLAS]}" = 'enabled' ] ; then
if [ "$BLAS_TYPE" = 'openblas' ] ; then
MATH_SRCDIR=$OPENBLAS_SRCDIR
MATH_SRCTAR=$OPENBLAS_SRCTAR
MATH_URL=$OPENBLAS_URL
MATH_OPTS=$OPENBLAS_OPTS
MATH_LIBNAME='openblas'
elif [ "$BLAS_TYPE" = 'other' ] ; then
MATH_SRCDIR=$LAPACK_SRCDIR
MATH_SRCTAR=$LAPACK_SRCTAR
MATH_URL=$LAPACK_URL
MATH_OPTS=$LAPACK_OPTS
MATH_LIBNAME='lapack'
LIB_STAT[$LLAPACK]='specified'
LIB_HOME[$LLAPACK]=$CPPTRAJHOME
LIB_FLAG[$LLAPACK]=$CPPTRAJHOME/lib/${LIB_STTC[$LLAPACK]}
LIB_INCL[$LLAPACK]="-I$CPPTRAJHOME/include"
else
# Bundle not supported for this BLAS type
TestProgErr "LAPACK/BLAS"
fi
# See if there is already a version of BLAS in CPPTRAJHOME
LIB_STAT[$LBLAS]='specified'
LIB_HOME[$LBLAS]=$CPPTRAJHOME
LIB_FLAG[$LBLAS]=$CPPTRAJHOME/lib/${LIB_STTC[$LBLAS]}
LIB_INCL[$LBLAS]="-I$CPPTRAJHOME/include"
DetermineFlink $BUILDTESTOPT " Checking for bundled LAPACK/BLAS" "${LIB_FLAG[$LLAPACK]} ${LIB_FLAG[$LBLAS]}"
#TestProgram silent " Checking for bundled OpenBLAS" "$CXX" "$CXXFLAGS ${LIB_INCL[$LBLAS]}" testp.cpp "${LIB_FLAG[$LBLAS]}"
if [ $? -ne 0 ] ; then
# Check if lib present but needs to be rebuilt
CheckRebuild "LAPACK/BLAS" "${LIB_FLAG[$LBLAS]}"
# See if user would like to get blas
PREFIX=$CPPTRAJHOME CC="$CC" CFLAGS="$CFLAGS" FC="$FC" LIBNAME="$MATH_LIBNAME" \
SRCDIR=$MATH_SRCDIR SRCTAR=$MATH_SRCTAR URL=$MATH_URL ./get_library.sh $REBUILDOPT $MATH_OPTS
if [ $? -ne 0 ] ; then
ErrMsg "Building LAPACK/BLAS failed."
exit 1
fi
# Test the built openblas
DetermineFlink " Checking built LAPACK/BLAS" "${LIB_FLAG[$LLAPACK]} ${LIB_FLAG[$LBLAS]}"
#TestProgram " Checking built OpenBLAS" "$CXX" "$CXXFLAGS ${LIB_INCL[$LBLAS]}" testp.cpp "${LIB_FLAG[$LBLAS]}"
fi
else
# BLAS specified but failed.
TestProgErr "LAPACK/BLAS"
fi
fi
}
TestArpack() {
cat > testp.cpp <<EOF
#include <cstdio>
extern "C" {
void dsaupd_(int&, char&, int&, char*, int&, double&, double*,
int&, double*, int&, int*, int*, double*, double*,
int&, int&);
}
int main() {
int ival = 0;
double dval = 0.0;
char cval = 'I';
dsaupd_(ival, cval, ival, &cval, ival, dval, &dval,
ival, &dval, ival, &ival, &ival, &dval, &dval,
ival, ival);
printf("Testing\n"); return 0;
}
EOF
DetermineFlink " Checking ARPACK" "${LIB_FLAG[$LARPACK]} ${LIB_FLAG[$LLAPACK]} ${LIB_FLAG[$LBLAS]}"
if [ $? -ne 0 ] ; then
TestProgErr "ARPACK"
fi
}
TestFFTW3() {
cat > testp.cpp <<EOF
#include <cstdio>
#include <fftw3.h>
int main() {
fftw_complex* array = (fftw_complex*) fftw_malloc(sizeof(fftw_complex) * 32);
if (array == 0) return 1;
fftw_free(array);
printf("Testing\n"); return 0;
}
EOF
if [ "${LIB_STAT[$LFFTW3]}" = 'amberopt' ] ; then
# Using FFTW from AMBER
TestProgram silent " Checking for FFTW3 from AMBERHOME" "$CXX" "$CXXFLAGS ${LIB_INCL[$LFFTW3]}" testp.cpp "${LIB_FLAG[$LFFTW3]}"
if [ $? -eq 1 ] ; then
WrnMsg "FFTW3 test failed. CPPTRAJ will be built without FFTW3."
LIB_STAT[$LFFTW3]='off'
fi
elif [ "$MKL_FFTW" = 'yes' ] ; then
# Using FFTW from MKL
TestProgram " Checking FFTW3" "$CXX" "$CXXFLAGS ${LIB_INCL[$LBLAS]}" testp.cpp "${LIB_FLAG[$LBLAS]}"
else
TestProgram silent " Checking FFTW3" "$CXX" "$CXXFLAGS ${LIB_INCL[$LFFTW3]}" testp.cpp "${LIB_FLAG[$LFFTW3]}"
if [ $? -ne 0 ] ; then
if [ "${LIB_STAT[$LFFTW3]}" = 'enabled' ] ; then
# See if there is already a version of FFTW in CPPTRAJHOME
LIB_STAT[$LFFTW3]='specified'
LIB_HOME[$LFFTW3]=$CPPTRAJHOME
LIB_FLAG[$LFFTW3]=$CPPTRAJHOME/lib/${LIB_STTC[$LFFTW3]}
LIB_INCL[$LFFTW3]="-I$CPPTRAJHOME/include"
TestProgram $BUILDTESTOPT " Checking for bundled FFTW" "$CXX" "$CXXFLAGS ${LIB_INCL[$LFFTW3]}" testp.cpp "${LIB_FLAG[$LFFTW3]}"
if [ $? -ne 0 ] ; then
CheckRebuild "FFTW" "${LIB_FLAG[$LFFTW3]}"
# See if user would like to get FFTW
PREFIX=$CPPTRAJHOME CC=$CC CFLAGS=$CFLAGS LIBNAME='fftw' \
SRCDIR=$FFTW_SRCDIR SRCTAR=$FFTW_SRCTAR URL=$FFTW_URL ./get_library.sh $REBUILDOPT $FFTW_OPTS
if [ $? -ne 0 ] ; then
ErrMsg "Building FFTW failed."
exit 1
fi
# Test the built FFTW
TestProgram " Checking built FFTW" "$CXX" "$CXXFLAGS ${LIB_INCL[$LFFTW3]}" testp.cpp "${LIB_FLAG[$LFFTW3]}"
fi
else
# FFTW specified but failed.
TestProgErr "FFTW"
fi
fi
fi
}
TestReadline() {
cat > testp.cpp <<EOF
#include <cstdio>
#include <readline/readline.h>
static char *line_read = (char *)NULL;
// Do not want to actually run this so leave outside main
void Unused() { line_read = readline(""); }
int main() { return 0; }
EOF
TestProgram " Checking Readline" "$CXX" "$CXXFLAGS ${LIB_INCL[$LREADLINE]}" testp.cpp "${LIB_FLAG[$LREADLINE]}"
}
TestXdrfile() {
cat > testp.cpp <<EOF
#include <xdrfile_xtc.h>
#include <xdr_seek.h>
XDRFILE* file;
bool Unused(const char* fname, int& natoms) {
if ( read_xtc_natoms( (char*)fname, &natoms ) != exdrOK )
return false;
xdr_seek(file, 0, SEEK_SET);
return true;
}
int main() { return 0; }
EOF
TestProgram " Checking Xdrfile" "$CXX" "$CXXFLAGS ${LIB_INCL[$LXDRFILE]}" testp.cpp "${LIB_FLAG[$LXDRFILE]}"
}
TestTngfile() {
cat > testp.cpp <<EOF
#include <tng/tng_io.h>
tng_trajectory_t traj_;
bool Unused(const char* fname) {
tng_function_status stat = tng_util_trajectory_open(fname, 'r', &traj_);
if (stat != TNG_SUCCESS)
return false;
return true;
}
int main() { return 0; }
EOF
TestProgram " Checking TNG" "$CXX" "$CXXFLAGS ${LIB_INCL[$LTNGFILE]}" testp.cpp "${LIB_FLAG[$LTNGFILE]}"
}
TestSanderlib() {
cat > testp.cpp <<EOF
#include "sander.h"
int main() {
sander_input input_;
input_.extdiel = 78.5; input_.intdiel = 1.0; input_.rgbmax = 25.0;
input_.saltcon = 0.0; input_.cut = 8.0; input_.dielc = 1.0;
input_.rdt = 0.0; input_.fswitch = -1.0; input_.restraint_wt = 0.0;
input_.igb = 0; input_.alpb = 0; input_.gbsa = 0; input_.lj1264 = -1;
input_.ipb = 0; input_.inp = 2; input_.vdwmeth = 1; input_.ew_type = 0;
input_.ntb = 0; input_.ifqnt = 0; input_.jfastw = 0; input_.ntf = 2;
input_.ntc = 2; input_.ntr = 0; input_.ibelly = 0;
input_.restraintmask[0] = '\0'; input_.bellymask[0] = '\0'; input_.refc[0] = '\0';
if (is_setup()) sander_cleanup();
return 0;
}
EOF
if [ "${LIB_STAT[$LSANDER]}" = 'amberopt' ] ; then
TestProgram silent " Checking for sanderlib" "$CXX" "$CXXFLAGS ${LIB_INCL[$LSANDER]}" testp.cpp "${LIB_FLAG[$LSANDER]}"
if [ $? -eq 1 ] ; then
WrnMsg "SANDER test failed. CPPTRAJ will be built without the SANDER API."
LIB_STAT[$LSANDER]='off'
fi
else
TestProgram " Checking sanderlib" "$CXX" "$CXXFLAGS ${LIB_INCL[$LSANDER]}" testp.cpp "${LIB_FLAG[$LSANDER]}"
fi
}
TestCuda() {
cat > testp.cpp <<EOF
#include <cstdio>
#include <cuda_runtime_api.h>
int main() {
int device;
if ( cudaGetDevice( &device ) == cudaSuccess ) {
cudaDeviceProp deviceProp;
if ( cudaGetDeviceProperties( &deviceProp, device ) == cudaSuccess )
printf("| CUDA device: %s\n", deviceProp.name);
}
return 0;
}
EOF
TestProgram noexe " Checking CUDA" "$CXX" "$CXXFLAGS ${LIB_INCL[$LCUDA]}" testp.cpp "${LIB_FLAG[$LCUDA]}"
}
TestOpenMM() {
cat > testp.cpp <<EOF
#include <cstdio>
#include "OpenMM.h"
int main() {
OpenMM::System* system = new OpenMM::System();
system->addParticle(1);
OpenMM::Integrator* integrator = new OpenMM::VerletIntegrator(1);
OpenMM::Context* context = new OpenMM::Context(*system, *integrator);
if (system == 0 || integrator == 0 || context == 0) return 1;
delete system;
delete integrator;
delete context;
return 0;
}
EOF
TestProgram " Checking OpenMM" "$CXX" "$CXXFLAGS ${LIB_INCL[$LOPENMM]}" testp.cpp "${LIB_FLAG[$LOPENMM]}"
}
#-------------------------------------------------------------------------------
# Test external libraries
TestLibraries() {
if [ $BUILD_LIBS -eq 1 ] ; then
echo "Enabled libraries will be built if not present."
elif [ -z "$BUILDTESTOPT" ] ; then
echo "CPPTRAJ will not ask to build libraries if not present."
fi
if [ "${LIB_TEST[$LBZIP]}" = 'yes' ] ; then TestBzlib ; fi
if [ "${LIB_TEST[$LZIP]}" = 'yes' ] ; then TestZlib ; fi
if [ "${LIB_TEST[$LNETCDF]}" = 'yes' ] ; then TestNetcdf ; fi
if [ "${LIB_TEST[$LPARANC]}" = 'yes' ] ; then TestPnetcdf ; fi
if [ "${LIB_TEST[$LBLAS]}" = 'yes' ] ; then TestMathlib ; fi
if [ "${LIB_TEST[$LARPACK]}" = 'yes' ] ; then TestArpack ; fi
if [ "${LIB_TEST[$LFFTW3]}" = 'yes' ] ; then TestFFTW3 ; fi
if [ "${LIB_TEST[$LREADLINE]}" = 'yes' ] ; then TestReadline ; fi
if [ "${LIB_TEST[$LXDRFILE]}" = 'yes' ] ; then TestXdrfile ; fi
if [ "${LIB_TEST[$LTNGFILE]}" = 'yes' ] ; then TestTngfile ; fi
if [ "${LIB_TEST[$LSANDER]}" = 'yes' ] ; then TestSanderlib ; fi
if [ "${LIB_TEST[$LCUDA]}" = 'yes' ] ; then TestCuda ; fi
if [ "${LIB_TEST[$LOPENMM]}" = 'yes' ] ; then TestOpenMM ; fi
}
#-------------------------------------------------------------------------------
# Set final flags for compiling and linking.
SetupFinalFlags() {
# Basic directives
if [ $USE_MPI -ne 0 ] ; then DIRECTIVES="$DIRECTIVES -DMPI" ; fi
if [ $USE_CPPTRAJDEBUG -ne 0 ] ; then DIRECTIVES="$DIRECTIVES -DDEBUG" ; fi
if [ $USE_SINGLEENSEMBLE -ne 0 ] ; then DIRECTIVES="$DIRECTIVES -DENABLE_SINGLE_ENSEMBLE" ; fi
if [ ! -z "$LFS" ] ; then DIRECTIVES="$DIRECTIVES $LFS" ; fi
if [ "$C11_SUPPORT" = 'yes' ] ; then
DIRECTIVES="$DIRECTIVES -DC11_SUPPORT"
if [ "${LIB_STAT[$LFFTW3]}" != 'off' ] ; then
DIRECTIVES="$DIRECTIVES -DLIBPME -DHAVE_FFTWD=1"
fi
fi
# Determine if this is a GitHub or AmberTools build
if [ ! -z "$AMBERHOME" ] ; then
AMBCFGDIR=`pwd | grep "AmberTools/src"`
if [ ! -z "$AMBCFGDIR" ] ; then
DIRECTIVES="$DIRECTIVES -DBUILDTYPE='\"AmberTools\"'"
# Attempt to find update_amber
amber_base_dir=${AMBCFGDIR%"AmberTools/src/cpptraj"}
update_amber="$amber_base_dir"/updateutils/main.py
ambertools_major=''
if [ -f "$update_amber" ] ; then
ambertools_major=`grep "_AMBERTOOLS_VERSION =" $update_amber | awk '{print $3;}'`
fi
if [ ! -z "$ambertools_major" ] ; then
# Try to determine minor version
ambertools_minor=0
at_dir=AmberTools"$ambertools_major"_Applied_Patches
patch_dir=$amber_base_dir/.patches/$at_dir
if [ -d "$patch_dir" ] ; then
update=1
ufile=$patch_dir/update.$update
while [ -f "$ufile" ] ; do
ambertools_minor=$update
((update++))
ufile=$patch_dir/update.$update
done
cpptraj_version_string=`printf "V%i.%02i" $ambertools_major $ambertools_minor`
DIRECTIVES="$DIRECTIVES -DAT_VERSION_STRING='\"$cpptraj_version_string\"'"
fi
fi
else
DIRECTIVES="$DIRECTIVES -DBUILDTYPE='\"GitHub\"'"
fi
else
# Assume GitHub
DIRECTIVES="$DIRECTIVES -DBUILDTYPE='\"GitHub\"'"
fi
# For GIT, record the current hash
if [ -f '.git/HEAD' ] ; then
REFFILE=`awk '{print $2; exit 0;}' .git/HEAD`
REFFILE=".git/$REFFILE"
if [ -f "$REFFILE" ] ; then
HASH=`cat $REFFILE`
if [ ! -z "$HASH" ] ; then
DIRECTIVES="$DIRECTIVES -DGITHASH='\"$HASH\"'"
fi
fi
fi
# Set up include and linking flags
ldf=''
CPPTRAJ_LIB=''
INCLUDE=''
nincl=0
for ((i=0; i < $NLIB; i++)) ; do
if [ "${LIB_STAT[$i]}" == 'off' ] ; then
if [ ! -z "${LIB_DOFF[$i]}" ] ; then
DIRECTIVES="$DIRECTIVES ${LIB_DOFF[$i]}"
fi
else
if [ ! -z "${LIB_D_ON[$i]}" ] ; then
DIRECTIVES="$DIRECTIVES ${LIB_D_ON[$i]}"
fi
# Include directories
if [ ! -z "${LIB_INCL[$i]}" ] ; then
# Search for previous include
idir=${LIB_INCL[$i]}
for ((j=0; j < $nincl; j++)) ; do
if [ "${include_array[$j]}" = "$idir" ] ; then
# Already included
#echo "DEBUG: $idir already included"
idir=''
break
fi
done
if [ ! -z "$idir" ] ; then
# Not yet included
#echo "DEBUG: $idir new inclusion"
include_array[$nincl]=$idir
((nincl++))
INCLUDE="$INCLUDE $idir"
fi
fi
# Link flags
if [ "${LIB_TYPE[$i]}" = 'ld' ] ; then
ldf="$ldf ${LIB_FLAG[$i]}"
elif [ "${LIB_TYPE[$i]}" = 'cpp' ] ; then
CPPTRAJ_LIB="$CPPTRAJ_LIB ${LIB_FLAG[$i]}"
fi
fi
done
if [ $REQUIRES_FLINK -eq 1 ] ; then
CPPTRAJ_LIB="$CPPTRAJ_LIB $FLINK"
fi
if [ $REQUIRES_PTHREAD -eq 1 ] ; then
CPPTRAJ_LIB="$CPPTRAJ_LIB -lpthread"
fi
LDFLAGS="$ldf $LDFLAGS"
# Platform-specific directives
if [ "$PLATFORM" = 'windows' ] ; then
echo "Warning: DTR trajectory not supported on windows."
else
echo "vmdplugin disabled due to nonfree source."
fi
}
#-------------------------------------------------------------------------------
# Setup include and linker flags for external libraries
SetupLibraries() {
# Additional BLAS setup if necessary. Done here to override -amberlib.
if [ "$BLAS_TYPE" = 'none' ] ; then
LIB_STAT[$LBLAS]='off'
LIB_STAT[$LLAPACK]='off'
LIB_STAT[$LARPACK]='off'
elif [ "$BLAS_TYPE" = 'mkl' ] ; then
SetupMKL
elif [ "$BLAS_TYPE" = 'libsci' ] ; then
LIB_STAT[$LBLAS]='enabled'
LIB_HOME[$LBLAS]=''
LIB_LINK[$LBLAS]='dynamic'
LIB_FLAG[$LBLAS]=''
LIB_STAT[$LLAPACK]='off'
LIB_FLAG[$LLAPACK]=''
elif [ "$BLAS_TYPE" = 'openblas' ] ; then
if [ "${LIB_STAT[$LBLAS]}" != 'direct' ] ; then
LIB_FLAG[$LBLAS]='-lopenblas'
fi
LIB_STTC[$LBLAS]='libopenblas.a'
if [ -z "${LIB_HOME[$LBLAS]}" -a "${LIB_STAT[$LBLAS]}" != 'direct' ] ; then
WrnMsg "'-openblas' may require specifying location with '--with-blas=<DIR>' or '-lblas='"
fi
LIB_STAT[$LLAPACK]='off'
LIB_FLAG[$LLAPACK]=''
elif [ "$BLAS_TYPE" = 'macAccelerate' ] ; then
LIB_FLAG[$LBLAS]='-framework Accelerate'
LIB_STAT[$LLAPACK]='off'
LIB_FLAG[$LLAPACK]=''
elif [ $USE_AMBERLIB -eq 1 ] ; then
if [ "${LIB_STAT[$LBLAS]}" == 'enabled' ] ; then
echo " Using blas from $AMBERHOME"
LIB_STAT[$LBLAS]='specified'
LIB_HOME[$LBLAS]=$AMBERHOME
LIB_LINK[$LBLAS]='static'
fi
if [ "${LIB_STAT[$LLAPACK]}" == 'enabled' ] ; then
echo " Using lapack from $AMBERHOME"
LIB_STAT[$LLAPACK]='specified'
LIB_HOME[$LLAPACK]=$AMBERHOME
LIB_LINK[$LLAPACK]='static'
fi
fi
# Use AMBERHOME to fill in libraries if needed
if [ $USE_AMBERLIB -eq 1 ] ; then
if [ "${LIB_STAT[$LNETCDF]}" == 'enabled' ] ; then
echo " Using netcdf from $AMBERHOME"
LIB_STAT[$LNETCDF]='specified'
LIB_HOME[$LNETCDF]=$AMBERHOME
LIB_LINK[$LNETCDF]='static'
fi
if [ "${LIB_STAT[$LARPACK]}" == 'enabled' -a "$BLAS_TYPE" != 'openblas' ] ; then
echo " Using arpack from $AMBERHOME"
LIB_STAT[$LARPACK]='specified'
LIB_HOME[$LARPACK]=$AMBERHOME
LIB_LINK[$LARPACK]='static'
fi
if [ "${LIB_STAT[$LFFTW3]}" = 'off' ] ; then
LIB_STAT[$LFFTW3]='amberopt'
LIB_LINK[$LFFTW3]='static'
elif [ "${LIB_STAT[$LFFTW3]}" == 'enabled' ] ; then
LIB_STAT[$LFFTW3]='specified'
LIB_HOME[$LFFTW3]=$AMBERHOME
LIB_LINK[$LFFTW3]='static'
fi
fi
# For any 'amberopt' check that AMBERHOME is available.
for ((i=0; i < $NLIB; i++)) ; do
if [ "${LIB_STAT[$i]}" = 'amberopt' ] ; then
if [ -z "$AMBERHOME" ] ; then
WrnMsg "Compilation of ${LIB_CKEY[$i]} requires AMBERHOME to be set"
WrnMsg " if --with-${LIB_CKEY[$i]} not specified."
LIB_STAT[$i]='off'
else
LIB_HOME[$i]=$AMBERHOME
fi
fi
done
# Set up library paths
for ((i=0; i < $NLIB; i++)) ; do
lhome=''
linc=''
lflag=''
#echo "DEBUG: ${LIB_CKEY[$i]} flag=${LIB_FLAG[$i]} stat=${LIB_STAT[$i]} home=${LIB_HOME[$i]}"
if [ "${LIB_STAT[$i]}" = 'off' ] ; then
#echo "${LIB_CKEY[$i]} disabled." # DEBUG
LIB_TEST[$i]='no'
else
#echo "${LIB_CKEY[$i]} enabled." # DEBUG
# Static/dynamic linking
if [ "${LIB_STAT[$i]}" = 'specified' -a $USE_STATIC -eq 2 ] ; then
LIB_LINK[$i]='static'
fi
lhome=${LIB_HOME[$i]}
#echo DEBUG $lhome ${LIB_STAT[$i]}
if [ "${LIB_STAT[$i]}" = 'bundled' ] ; then
LIB_TEST[$i]='no'
linc="-I$lhome"
lflag="$lhome/${LIB_STTC[$i]}"
else
LIB_TEST[$i]=$PERFORM_CHECKS
if [ "${LIB_STAT[$i]}" = 'direct' ] ; then
lflag=${LIB_FLAG[$i]}
linc=''
elif [ -z "$lhome" ] ; then
# Lib home not specified
if [ "${LIB_LINK[$i]}" = 'static' ] ; then
Err "'-libstatic' requires --with-${LIB_CKEY[$i]} specified."
fi
lflag=${LIB_FLAG[$i]}
else
# Lib home specified
linc="-I$lhome/include"
# Check if architecture-specific lib dir exists. Use that if so.
lhdir="$lhome/lib"
ladir="$lhome/lib$NBITS"
if [ -d "$ladir" ] ; then
lhdir="$ladir"
fi
if [ "${LIB_LINK[$i]}" = 'static' ] ; then
if [ -z "${LIB_STTC[$i]}" -o ! -f "$lhdir/${LIB_STTC[$i]}" ] ; then
WrnMsg "Cannot link '${LIB_CKEY[$i]}' statically."
lflag="-L$lhdir ${LIB_FLAG[$i]}"
else
lflag="$lhdir/${LIB_STTC[$i]}"
fi
else
lflag="-L$lhdir ${LIB_FLAG[$i]}"
fi
# Library-specific INCLUDE fixes when home specified.
if [ $i -eq $LREADLINE ] ; then
linc="$linc/readline"
fi
if [ $i -eq $LXDRFILE ] ; then
linc="$linc/xdrfile"
fi
fi
# Library-specific flag fixes
if [ $i -eq $LREADLINE ] ; then
# For external readline, we need to link libtermcap for windows
# and libncurses for Linux
#if [ $USE_WINDOWS -eq 1 ]; then
lflag="$lflag -ltermcap"
#else
# lflag="$lflag -lncurses"
#fi
elif [ $i -eq $LSANDER ] ; then
# Always specify libsander location to prevent pulling in
# other amber libraries.
if [ ! -f "${LIB_FLAG[$LSANDER]}" ] ; then
lflag="${LIB_HOME[$LSANDER]}/lib/libsander$SHARED_SUFFIX"
else
# libsander directly specified.
lflag=${LIB_FLAG[$LSANDER]}
# Figure out the include directory
if [ -z "$linc" ] ; then
tmpdir1=`dirname $lflag` # the lib dir
tmpdir2=`dirname $tmpdir1` # The AMBERHOME dir
linc="-I"$tmpdir2/include
fi
fi
fi
fi
# Special case. If library had include path set already, do not override it.
if [ ! -z "${LIB_INCL[$i]}" ] ; then
linc=${LIB_INCL[$i]}
fi
#echo "DEBUG lib ${LIB_CKEY[$i]} stat=\"${LIB_STAT[$i]}\" linc=\"$linc\" lflag=\"$lflag\"" # DEBUG
LIB_FLAG[$i]="$lflag"
LIB_INCL[$i]="$linc"
fi
done
# Take care of any library dependencies.
if [ "${LIB_STAT[$LZIP]}" = 'off' -a "${LIB_STAT[$LTNGFILE]}" != 'off' ] ; then
# TNG depends on libz
echo "Warning: TNG depends on libz; disabling TNG."
LIB_STAT[$LTNGFILE]='off'
fi
}
#-------------------------------------------------------------------------------
# Set up compiler commands and compiler options
SetupCompilers() {
if [ ! -z "$CXX" ] ; then echo "C++ compiler (CXX) set to $CXX" ; fi
if [ ! -z "$CC" ] ; then echo "C compiler (CC) set to $CC" ; fi
if [ ! -z "$FC" ] ; then echo "Fortran compiler (FC) set to $FC" ; fi
# If no compiler type specified try to guess
if [ -z "$COMPILERS" -o ! -z "$CXX" ] ; then
if [ ! -z "$CXX" ] ; then
SPECIFIED_COMPILER=$COMPILERS
echo "Determining compilers from CXX ($CXX)"
case "$CXX" in
# NOTE - Have to look for clang++ first since it overlaps with g++
*clang++* ) COMPILERS='clang' ;;
*g++* ) COMPILERS='gnu' ;;
*icpc* ) COMPILERS='intel' ;;
*pgc++* ) COMPILERS='pgi' ;;
*CC* ) COMPILERS='cray' ;;
* ) WrnMsg "Could not detect compiler type ($CXX); assuming GNU" ;;
esac
# If compiler was also specified make sure it matches as a sanity check
if [ ! -z "$SPECIFIED_COMPILER" -a "$SPECIFIED_COMPILER" != "$COMPILERS" ] ; then
WrnMsg "$SPECIFIED_COMPILER compilers specified but need $COMPILERS based on CXX = $CXX"
fi
fi
fi
# If still no compiler default to gnu
if [ -z "$COMPILERS" ] ; then
# On OSX sometimes gnu means clang
if [ "$PLATFORM" = 'Darwin' -a ! -z "`g++ --version | grep LLVM`" ] ; then
echo "No compilers specified; defaulting to Apple clang (gnu)"
COMPILERS='clang'
else
echo "No compilers specified; defaulting to gnu"
COMPILERS='gnu'
fi
fi
# Set compiler options
optflags='' # C/C++ compiler optimization flags
foptflags='' # Fortran compiler optimization flags
hostflags='' # Flags for native host optimizations
ompflag='' # Compiler OpenMP flag
freefmtflag='' # Fortran free format flag
picflag='' # Compiler flag for position-independent code
warnflag='-Wall'
fwarnflag=''
DBFLAG='-g'
noinlineflag='-fno-inline'
commonflags=''
staticflag='-static'
staticlink=''
case "$COMPILERS" in
'gnu' )
if [ -z "$CC" ]; then CC=gcc; fi
if [ -z "$CXX" ]; then CXX=g++; fi
if [ -z "$FC" ]; then FC=gfortran; fi
hostflags='-mtune=native'
optflags='-O3'
ompflag='-fopenmp'
freefmtflag='-ffree-form'
foptflags='-O3'
FLINK='-lgfortran'
picflag='-fPIC'
C11FLAG='-std=gnu++11'
staticlink='-lquadmath'
;;
'clang' )
if [ -z "$CC" ]; then CC=clang; fi
if [ -z "$CXX" ]; then CXX=clang++; fi
if [ -z "$FC" ]; then FC=gfortran; fi
hostflags=''
optflags='-O3'
ompflag='-fopenmp'
freefmtflag='-ffree-form'
foptflags='-O3'
FLINK='-lgfortran'
picflag='-fPIC'
C11FLAG='-std=c++11'
;;
'intel' )
if [ -z "$CC" ]; then CC=icc; fi
if [ -z "$CXX" ]; then CXX=icpc; fi
if [ -z "$FC" ]; then FC=ifort; fi
CXXFLAGS="-fp-model precise -fp-model source $CXXFLAGS"
CFLAGS="-fp-model precise -fp-model source $CFLAGS"
hostflags='-xHost'
optflags='-O3'
VERSION_LINE=`$CXX -v 2>&1 | grep version`
if [ $? -ne 0 ] ; then
echo "$VERSION_LINE"
Err "Could not check Intel C++ compiler version."
fi
MAJOR_V=`echo "$VERSION_LINE" | awk '{print $3; exit 0;}' | cut -d'.' -f1`
if [ $MAJOR_V -ge 16 ] ; then
ompflag='-qopenmp'
else
ompflag='-openmp'
fi
freefmtflag='-FR'
foptflags='-ip -O3'
fwarnflag='-warn all'
FLINK='-lifport -lifcore'
picflag="-fpic"
C11FLAG='-std=c++11'
# Check for 'error: identifier "_LIB_VERSION_TYPE" is undefined'
cat > testp.cpp <<EOF
#include <math.h>
int main() { double x; x = sqrt(2); return 0; }
EOF
TestProgram quiet " Testing Intel compatibility with C headers" "$CXX" "$CXXFLAGS" testp.cpp
if [ $? -ne 0 ] ; then
CFLAGS="-D__PURE_INTEL_C99_HEADERS__ $CFLAGS"
CXXFLAGS="-D__PURE_INTEL_C99_HEADERS__ $CXXFLAGS"
fi
;;
"pgi" )
if [ -z "$CC" ]; then CC=pgcc; fi
if [ -z "$CXX" ]; then CXX=pgc++; fi
if [ -z "$FC" ]; then FC=pgf90; fi
CXXFLAGS="-Kieee -Mnoflushz $CXXFLAGS"
CFLAGS="-Kieee -Mnoflushz $CFLAGS"
hostflags='-fastsse'
optflags='-fast'
foptflags='-fast'
if [ "$PLATFORM" = 'cray' ] ; then
ompflag='-mp=nonuma'
else
ompflag='-mp'
fi
noinlineflag='-Mnoautoinline'
warnflag='-Minform=warn'
freefmtflag='-Mfree'
FLINK='-pgf90libs'
picflag='-fpic'
C11FLAG='-std=c++11'
;;
"cray" )
if [ -z "$CC" ]; then CC=cc; fi
if [ -z "$CXX" ]; then CXX=CC; fi
if [ -z "$FC" ]; then FC=ftn; fi
CXXFLAGS="-h gnu $CXXFLAGS"
CFLAGS="-h gnu $CFLAGS"
hostflags=''
optflags=''
ompflag=''
warnflag='-h msglevel_2' # This will also print cautions
fwarnflag='-m 2'
freefmtflag='-f free -emf'
foptflags=''
FLINK=''
picflag='-fpic'
C11FLAG='-hstd=c++11'
if [ $USE_OPENMP -eq 0 ] ; then
commonflags='-h noomp'
fi
;;
* ) Err "Unknown compilers: $1" ;;
esac
# Unless specified fortran warnflag is same as C/C++
if [ -z "$fwarnflag" ] ; then fwarnflag=$warnflag ; fi
# Change to MPI compiler wrappers if specified. Not needed for cray.
if [ $USE_MPI -ne 0 -a "$COMPILERS" != 'cray' ] ; then
if [ $USE_MPI -eq 1 ] ; then
mpi_cc='mpicc'
mpi_cxx='mpicxx'
mpi_f90='mpif90'
elif [ $USE_MPI -eq 2 ] ; then
mpi_cc='mpiicc'
mpi_cxx='mpiicpc'
mpi_f90='mpiifort'
fi
if [ -z "$MPICC" ] ; then
CC=$mpi_cc
else
echo "MPI C compiler (MPICC) set to $MPICC"
CC=$MPICC
fi
if [ -z "$MPICXX" ] ; then
CXX=$mpi_cxx
else
echo "MPI C++ compiler (MPICXX) set to $MPICXX"
CXX=$MPICXX
fi
if [ -z "$MPIF90" ] ; then
FC=$mpi_f90
else
echo "MPI Fortran compiler (MPIF90) set to $MPIF90"
FC=$MPIF90
fi
fi
# Use cray wrappers
if [ "$PLATFORM" = 'cray' ] ; then
CC=cc
CXX=CC
FC=ftn
fi
# Sanity check
if [ -z "$CC" -o -z "$CXX" -o -z "$FC" ] ; then
ErrMsg "No compiler specified and CXX not set."
UsageSimple
exit 1
fi
# Turn off/on optimizations if necessary
if [ ! -z "$TUNEFLAGS" ] ; then
USE_OPT=2
hostflags=$TUNEFLAGS
fi
if [ $USE_OPT -eq 0 ] ; then
optflags='-O0'
foptflags='-O0'
hostflags=''
elif [ $USE_OPT -eq 2 ] ; then
optflags="$optflags $hostflags"
foptflags="$foptflags $hostflags"
fi
# Turn off PI code if necessary
if [ $USE_SHARED -eq 0 ] ; then
picflag=''
fi
# Turn off debug flags if necessary
if [ $USE_DEBUG -eq 0 ] ; then
DBFLAG=''
noinlineflag=''
fi
# Turn off static flag if necessary
if [ $USE_STATIC -ne 1 ] ; then
staticflag=''
staticlink=''
fi
# Turn off openmp flag if necessary
if [ $USE_OPENMP -eq 0 ] ; then
ompflag=''
fi
# Set compiler flags
CXXFLAGS="$DBFLAG $warnflag $ompflag $optflags $noinlineflag $picflag $commonflags $CXXFLAGS"
CFLAGS="$DBFLAG $warnflag $ompflag $optflags $picflag $commonflags $CFLAGS"
F77FLAGS="$DBFLAG $fwarnflag $ompflag $foptflags $picflag $commonflags $FFLAGS"
FFLAGS="$DBFLAG $fwarnflag $ompflag $foptflags $picflag $freefmtflag $commonflags $FFLAGS"
LDFLAGS="$LDFLAGS $ompflag $staticflag $staticlink"
# DEBUG
#echo $CXX $CXXFLAGS
#echo $CC $CFLAGS
#echo $FC $FFLAGS
}
#-------------------------------------------------------------------------------
# Set up profiling if specified
SetupProfiling() {
if [ $USE_PROFILE -ne 0 ] ; then
if [ $USE_PROFILE -eq 1 -o $USE_PROFILE -eq 2 ] ; then
if [ "$COMPILERS" != 'gnu' ] ; then
Err "This profile option only supported by GNU compilers."
fi
if [ $USE_PROFILE -eq 1 ] ; then
CXXFLAGS="-pg $CXXFLAGS"
CFLAGS="-pg $CXXFLAGS"
LDFLAGS="-pg $LDFLAGS"
else
CXXFLAGS="$CXXFLAGS -D_GLIBCXX_PROFILE"
fi
elif [ $USE_PROFILE -eq 3 ] ; then
vtuneflags=''
if [ "$COMPILERS" = 'intel' ] ; then
vtuneflags='-debug inline-debug-info'
CFLAGS="-g $vtuneflags $CFLAGS"
CXXFLAGS="-g $vtuneflags $CXXFLAGS"
fi
LDFLAGS="-shared-intel -shared-libgcc $LDFLAGS"
fi
fi
}
#-------------------------------------------------------------------------------
# Basic compiler tests
TestCompilers() {
echo ""
# C++ OpenMP
if [ $USE_OPENMP -eq 1 ] ; then
cat > testp.cpp <<EOF
#ifdef _OPENMP
#include <omp.h>
#include <cstdio>
int main() {
int nthreads;
# pragma omp parallel
{
if (omp_get_thread_num() == 0)
nthreads = omp_get_num_threads();
}
printf("%i threads Testing\n", nthreads);
return 0;
}
#endif
EOF
TestProgram " Testing C++ compiler (OpenMP)" "$CXX" "$CXXFLAGS" testp.cpp
else
# C++
cat > testp.cpp <<EOF
#include <cstdio>
int main() { printf("Testing\n"); return 0; }
EOF
TestProgram " Testing C++ compiler" "$CXX" "$CXXFLAGS" testp.cpp
fi
# C
cat > testp.c <<EOF
#include <stdio.h>
int main() { printf("Testing\n"); return 0; }
EOF
TestProgram " Testing C compiler" "$CC" "$CFLAGS" testp.c
# Fortran - only needed if pub_fft.F90 needs to be compiled
if [ $REQUIRES_FLINK -eq 1 ] ; then
cat > testp.f <<EOF
program testf
write(6,*) 'testing a Fortran program'
end program testf
EOF
TestProgram " Testing Fortran compiler" "$FC" "$FFLAGS" testp.f
fi
}
# ------------------------------------------------------------------------------
# Set up MKL flags for BLAS/LAPACK
SetupMKL() {
if [ "$MKL_TYPE" = 'mkl' -a "$COMPILERS" != 'intel' ] ; then
MKL_TYPE='line'
fi
# Determine mkl home directory
mklroot=''
if [ ! -z "$MKLROOT" ] ; then
mklroot=$MKLROOT
elif [ ! -z "$MKL_HOME" ] ; then
mklroot=$MKL_HOME
fi
if [ ! -z "$mklroot" ] ; then
echo " Using MKL for BLAS/LAPACK in $mklroot"
fi
# Determine link style
if [ "$MKL_TYPE" = 'mkl' ] ; then
# Simple flag for Intel compilers
mkllib='-mkl'
else
# Link-line advisor style
if [ -z "$mklroot" ] ; then
Err "MKLROOT/MKL_HOME not set."
fi
mkldir=$mklroot
# Platform-dependent stuff
if [ "$PLATFORM" = 'Darwin' ] ; then
mkldir="$mkldir/lib"
wlstart=''
wlend=''
else
if [ "$NBITS" -eq 64 ] ; then
mkldir="$mkldir/lib/intel64"
else
mkldir="$mkldir/lib/32"
fi
wlstart='-Wl,--start-group'
wlend='-Wl,--end-group'
fi
# Determine architecture
if [ "$NBITS" -eq 64 ] ; then
mklinterface=libmkl_intel_lp64.a
mklblas="-lmkl_blas95_lp64"
mkllapack="-lmkl_lapack95_lp64"
else
mklinterface=libmkl_intel.a
mklblas="-lmkl_blas95"
mkllapack="-lmkl_lapack95"
fi
# Assume GNU linker.
mklthread=''
mklomp=''
if [ $USE_OPENMP -eq 1 ] ; then
if [ "$COMPILERS" = 'intel' ] ; then
mklthread="$mkldir/libmkl_intel_thread.a"
mklomp='-liomp5'
elif [ "$COMPILERS" = 'pgi' ] ; then
mklthread="$mkldir/libmkl_pgi_thread.a"
mklomp='-pgf90libs -mp'
elif [ "$COMPILERS" = 'gnu' ] ; then
mklthread="$mkldir/libmkl_gnu_thread.a"
mklomp='-lgomp'
else
WrnMsg "OpenMP MKL not supported for $COMPILERS. Using sequential."
mklthread="$mkldir/libmkl_sequential.a"
fi
if [ "$PLATFORM" = 'Darwin' -a "$COMPILERS" != 'intel' ] ; then
WrnMsg "OpenMP MKL not supported on OSX without Intel compilers. Using sequential."
mklthread="$mkldir/libmkl_sequential.a"
fi
else
mklthread="$mkldir/libmkl_sequential.a"
fi
# Create the link line
mkllib="-L$mkldir $mkllapack $mklblas $wlstart $mkldir/$mklinterface $mklthread $mkldir/libmkl_core.a $wlend $mklomp -lpthread -lm -ldl"
# Turn off pthread since we are adding it here.
REQUIRES_PTHREAD=0
fi
LIB_STAT[$LBLAS]='enabled'
LIB_HOME[$LBLAS]=''
LIB_LINK[$LBLAS]='dynamic'
LIB_FLAG[$LBLAS]="$mkllib"
LIB_STAT[$LLAPACK]='off'
LIB_FLAG[$LLAPACK]=''
# If no FFTW, try using MKL
if [ "${LIB_STAT[$LFFTW3]}" = 'off' -a "$MKL_FFTW" != 'no' ] ; then
MKL_FFTW='yes'
LIB_STAT[$LFFTW3]='enabled'
LIB_FLAG[$LFFTW3]=''
if [ ! -z "$mklroot" ] ; then
LIB_INCL[$LBLAS]="-I$mklroot/include/fftw"
fi
fi
}
# ------------------------------------------------------------------------------
# Check that CUDA_HOME is defined and set up flags for nvcc
SetupCUDA() {
if [ -z "$CUDA_HOME" ] ; then
Err "CUDA_HOME not set. Set CUDA_HOME to point to your NVIDIA tools installation."
fi
if [ ! -x "$CUDA_HOME/bin/nvcc" ]; then
Err "Error: nvcc cuda compiler not found in $CUDA_HOME/bin"
fi
if [ -z "$NVCC" ]; then NVCC="$CUDA_HOME/bin/nvcc"; fi
cuda_version=`$NVCC --version | grep 'release' | cut -d' ' -f5 | cut -d',' -f1`
echo " CUDA version $cuda_version detected."
SM_CONFIG="Configuring for $SHADER_MODEL"
if [ -z "$NVCCFLAGS" -a -z "$SHADER_MODEL" ] ; then
WrnMsg "SHADER_MODEL not set. Compiling for multiple architectures."
WrnMsg "To compile for a specific architecture set SHADER_MODEL"
WrnMsg "to 'sm_XX', where XX is the shader model version."
# NOTE: From AmberTools configure2
#Note at present we do not include SM3.5 or SM3.7 since they sometimes show performance
#regressions over just using SM3.0.
# TODO fix for volta?
sm70flags='-gencode arch=compute_60,code=sm_70'
sm62flags='-gencode arch=compute_62,code=sm_62'
sm61flags='-gencode arch=compute_61,code=sm_61'
sm60flags='-gencode arch=compute_60,code=sm_60'
sm53flags='-gencode arch=compute_53,code=sm_53'
sm52flags='-gencode arch=compute_52,code=sm_52'
sm50flags='-gencode arch=compute_50,code=sm_50'
sm37flags='-gencode arch=compute_37,code=sm_37'
sm35flags='-gencode arch=compute_35,code=sm_35'
sm30flags='-gencode arch=compute_30,code=sm_30'
sm20flags='-gencode arch=compute_20,code=sm_20'
if [ "$cuda_version" = '9.0' -o "$cuda_version" = '9.1' -o "$cuda_version" = '9.2' -o "$cuda_version" = "10.0" -o "$cuda_version" = "10.1" ] ; then
SM_CONFIG="Configuring for SM3.0, SM5.0, SM5.2, SM5.3, SM6.0, SM6.1, and SM7.0"
NVCCFLAGS="$sm30flags $sm50flags $sm52flags $sm53flags $sm60flags $sm61flags $sm70flags"
elif [ "$cuda_version" = '8.0' ] ; then
SM_CONFIG="Configuring for SM2.0, SM3.0, SM5.0, SM5.2, SM5.3, SM6.0 and SM6.1"
NVCCFLAGS="$sm20flags $sm30flags $sm50flags $sm52flags $sm53flags $sm60flags $sm61flags"
else
SM_CONFIG="Configuring for SM2.0, SM3.0, SM5.0, SM5.2 and SM5.3"
echo "BE AWARE: CUDA < 8.0 does not support GTX-1080, Titan-XP, DGX-1 or other Pascal based GPUs."
NVCCFLAGS="$sm20flags $sm30flags $sm50flags $sm52flags $sm53flags"
fi
fi
if [ -z "$NVCCFLAGS" ]; then NVCCFLAGS="$DBFLAG -arch=$SHADER_MODEL"; fi
if [ ! -z "$picflag" ] ; then
NVCCFLAGS="--compiler-options $picflag $NVCCFLAGS"
fi
LIB_STAT[$LCUDA]='specified'
LIB_HOME[$LCUDA]=$CUDA_HOME
}
# ------------------------------------------------------------------------------
# Basic checks, set up some directives
BasicChecks() {
# Check install directory
if [ -z "$CPPTRAJHOME" ] ; then
# Default is to use current directory.
CPPTRAJHOME=`pwd`
CPPTRAJBIN=$CPPTRAJHOME/bin
CPPTRAJLIB=$CPPTRAJHOME/lib
CPPTRAJINC=$CPPTRAJHOME/include
CPPTRAJDAT=$CPPTRAJHOME/dat
# No need to install data directory
INSTALL_DAT=''
elif [ ! -d "$CPPTRAJHOME" ] ; then
Err "Install directory '$CPPTRAJHOME' does not exist."
fi
# Test incompatible options
if [ "$PLATFORM" = 'windows' ] ; then
if [ $USE_MPI -ne 0 ] ; then
Err "MPI not currently supported on Windows."
fi
if [ $USE_OPENMP -ne 0 ] ; then
Err "OpenMP not currently supported on Windows."
fi
#echo "WINDOWS support requested. Implies '-static'."
#USE_STATIC=1
fi
if [ "${LIB_STAT[$LPARANC]}" != 'off' -a $USE_MPI -eq 0 ] ; then
WrnMsg "Parallel NetCDF enabled but MPI not specified. Assuming '-mpi'."
USE_MPI=1
elif [ $USE_MPI -ne 0 -a "${LIB_STAT[$LPARANC]}" = 'off' ] ; then
LIB_STAT[$LPARANC]='enabled'
fi
# If we are using the bundled ARPACK then we will need C++/Fortran linking.
if [ "${LIB_STAT[$LARPACK]}" = 'bundled' ] ; then
REQUIRES_FLINK=1
fi
# TODO if we skipped checks we may need the FLINK flag enabled
# Binary suffix
if [ $USE_MPI -ne 0 ] ; then SFX=$SFX".MPI" ; fi
if [ $USE_OPENMP -ne 0 ] ; then SFX=$SFX".OMP" ; fi
if [ $USE_CUDA -ne 0 ] ; then SFX=$SFX".cuda" ; fi
}
#-------------------------------------------------------------------------------
# Platform-specific tests
PlatformTests() {
# C++11 support
if [ "$C11_SUPPORT" = 'yes' ] ; then
# First try to test a basic C++11 construct
cat > testp.cpp <<EOF
#include <initializer_list>
int main() { constexpr int a = 5; auto b = a; for (auto i : {1, 2, 3}) { b += i; } return 0; }
EOF
TestProgram silent " Testing basic C++11 support" "$CXX" "$CXXFLAGS $C11FLAG" testp.cpp
if [ $? -eq 1 ] ; then
echo "Not present"
C11_SUPPORT='no'
else
C11_SUPPORT='yes'
# Next, test GNU backend for at least 4.8.1 support.
# Clang requires >= 3.3.
cat > testp.cpp <<EOF
#include <cstdio>
int main() {
#ifdef __clang_major__
// Test for Clang >= 3.3
printf("Clang %i.%i.%i\n", __clang_major__, __clang_minor__, __clang_patchlevel__);
int badClang = 1;
#if __clang_major__ > 3
badClang = 0;
#elif (__clang_major__ == 3 && __clang_minor__ > 2)
badClang = 0;
#endif
if (badClang == 1)
printf("Clang < 3.3 detected.\n");
else
printf("Clang >= 3.3 detected.\n");
return badClang;
#else
// Test for GCC >= 4.8.1
printf("GCC %i.%i.%i\n", __GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__);
int badGcc = 1;
#if __GNUC__ > 4
badGcc = 0;
#elif (__GNUC__ == 4 && __GNUC_MINOR__ > 8)
badGcc = 0;
#elif (__GNUC__ == 4 && __GNUC_MINOR__ == 8 && __GNUC_PATCHLEVEL__ > 0)
badGcc = 0;
#endif
if (badGcc == 1)
printf("GCC < 4.8.1 detected.\n");
else
printf("GCC >= 4.8.1 detected.\n");
return badGcc;
#endif /* GCC/Clang */
}
EOF
echo -n " Testing system headers for C++11 support: "
$CXX $CXXFLAGS $C11FLAG -o testp testp.cpp > $COMPOUT 2> $COMPERR
if [ $? -ne 0 ] ; then
C11_SUPPORT='no'
else
./testp > prog.out
if [ $? -ne 0 ] ; then
C11_SUPPORT='no'
fi
rm -f testp prog.out
fi
rm -f $COMPOUT $COMPERR
if [ "$C11_SUPPORT" = 'no' ] ; then
echo "Not supported"
else
echo "OK"
CXXFLAGS="$CXXFLAGS $C11FLAG"
fi
fi
fi
# Some compilers (like older Intel) have a problem with the order of
# stdio vs mpi
if [ $USE_MPI -ne 0 ] ; then
cat > testp.cpp <<EOF
#include <cstdio>
#include <mpi.h>
int main() { printf("Testing a C++ MPI program.\n"); return 0; }
EOF
TestProgram quiet " Testing STDIO/MPI ordering" "$CXX" "$CXXFLAGS" testp.cpp
if [ $? -eq 1 ] ; then
# Try to fix it with -DMPICH_IGNORE_CXX_SEEK
TestProgram " Testing fix for STDIO/MPI ordering" "$CXX" "$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK" testp.cpp
# That worked. Add to CXXFLAGS
CXXFLAGS="$CXXFLAGS -DMPICH_IGNORE_CXX_SEEK"
fi
fi
# ----- Mac OSX --------------------------------
if [ "$PLATFORM" = 'Darwin' ] ; then
SHARED_SUFFIX='.dylib'
if [ "$COMPILERS" = 'clang' ] ; then
# On OSX with clang, some libraries may be built with libstdc++ and will
# fail to link without this flag.
cat > testp.cpp <<EOF
#include <cstdio>
#include <string>
int main() { std::string temp("Testing"); printf("%s\n", temp.c_str()); return 0; }
EOF
TestProgram quiet "Without stdlib flag" "$CXX" "$CXXFLAGS" testp.cpp
if [ $? -eq 1 ] ; then
# Test with stdlib flag
TestProgram quiet "With stdlib flag" "$CXX" "$CXXFLAGS" testp.cpp "-stdlib=libstdc++"
if [ $? -eq 1 ] ; then
Err "Could not link properly with clang++ on OSX"
fi
LDFLAGS="$LDFLAGS -stdlib=libstdc++"
fi
# Test that clang can link between C++ and fortran
if [ $REQUIRES_FLINK -eq 1 ] ; then
echo -n " Testing clang C++/Fortran linking: "
cat > testc.cpp <<EOF
#include <cstdio>
extern "C" { void mytest_(int&); } int main() { int ival=14; printf("Testing"); mytest_(ival); }
EOF
$CXX $CXXFLAGS -c -o testc.o testc.cpp > $COMPOUT 2> $COMPERR
if [ $? -ne 0 ] ; then
cat $COMPERR >&2
exit 1
fi
cat > testf.f <<EOF
subroutine mytest(ival)
implicit none
integer, intent(in) :: ival
write(6,'(a,i6)') ' cross-link ', ival
end subroutine mytest
EOF
$FC $FFLAGS -c -o testf.o testf.f > $COMPOUT 2> $COMPERR
if [ $? -ne 0 ] ; then
cat $COMPERR >&2
exit 1
fi
TestProgram quiet "clang++/gfortran link" "$CXX" " " "testc.o testf.o" "$FLINK"
if [ $? -ne 0 ] ; then
# Probably missing lgfortran Search for it
fortlib_dir=''
for fl_dir in `$FC -print-search-dirs | grep "libraries:" | awk 'BEGIN{FS="[=:]";}{
for (col=2; col <= NF; col++)
print $col;
}'` ; do
TestProgram quiet "test" "$CXX" " " "testc.o testf.o" "-L$fl_dir $FLINK"
if [ $? -eq 0 ] ; then
fortlib_dir=$fl_dir
break
fi
done
if [ -z "$fortlib_dir" ] ; then
Err "Cannot link C++ and Fortran with clang."
fi
# Make sure system lib dir is searched before libgfortran dir.
# See https://github.com/Amber-MD/cpptraj/pull/473
FLINK="-L/usr/lib -L$fortlib_dir $FLINK"
fi
echo "OK"
fi
fi # End if clang
# ----- Windows/Cygwin -------------------------
elif [ "$PLATFORM" = 'windows' ] ; then
SHARED_SUFFIX='.dll.a'
EXE='.exe'
# ----- Cygwin ---------------------------------
elif [ ! -z "`echo $PLATFORM | grep -i cygwin`" ] ; then
SHARED_SUFFIX='.dll'
# ----- Linux (default) ------------------------
else
SHARED_SUFFIX='.so'
fi
}
#-------------------------------------------------------------------------------
# BuildRules <config file> {cxx|cc|f77} ...
# Write build rules for config files.
BuildRules() {
if [ -z "$1" ] ; then
Err "BuildRules(): No output file."
fi
configfile=$1
shift
while [ ! -z "$1" ] ; do
rule=''
case "$1" in
cxx )
echo "CXX=$CXX" >> $configfile
echo "CXXFLAGS=$CXXFLAGS \$(DBGFLAGS)" >> $configfile
rule='.cpp.o:'
cmd='CXX'
line='$(CXX) $(DIRECTIVES) $(INCLUDE) $(CXXFLAGS)'
;;
cc )
echo "CC=$CC" >> $configfile
echo "CFLAGS=$CFLAGS \$(DBGFLAGS)" >> $configfile
rule='.c.o:'
cmd='CC'
line='$(CC) $(DIRECTIVES) $(INCLUDE) $(CFLAGS)'
;;
f77 )
echo "FC=$FC" >> $configfile
echo "F77FLAGS=$F77FLAGS \$(DBGFLAGS)" >> $configfile
rule='.f.o:'
cmd='FC'
line='$(FC) $(DIRECTIVES) $(INCLUDE) $(F77FLAGS)'
;;
f90 )
echo "FC=$FC" >> $configfile
echo "FFLAGS=$FFLAGS \$(DBGFLAGS)" >> $configfile
# No rule needed for pub_fft.F90
;;
nvcc )
echo "NVCC=$NVCC" >> $configfile
echo "NVCCFLAGS=$NVCCFLAGS" >> $configfile
rule='%%.o : %%.cu'
cmd='NVCC'
line='$(NVCC) $(DBGFLAGS) $(NVCCFLAGS)'
;;
esac
if [ ! -z "$rule" ] ; then
printf "\n$rule\n" >> $configfile
if [ $COMPILE_VERBOSE -eq 0 ] ; then
printf "\t@echo $cmd \$<\n" >> $configfile
printf "\t@$line -c -o \$@ \$<\n\n" >> $configfile
else
printf "\n\t$line -c -o \$@ \$<\n\n" >> $configfile
fi
fi
shift
done
}
#-------------------------------------------------------------------------------
# Use cmake to configure build.
SetupCmake() {
CMAKE=`which cmake`
if [ -z "$CMAKE" ] ; then
Err "'cmake' binary not found. Cannot configure with cmake."
fi
# Not recommended to run in same directory as configure
if [ "$WORKDIR" = '.' ] ; then
ErrMsg "Error: 'cmake' configure should be done in a separate directory."
ErrMsg " e.g. $ cd \$CPPTRAJHOME"
ErrMsg " $ mkdir build"
ErrMsg " $ cd build"
ErrMsg " $ ../configure -cmake <options>"
exit 1
fi
# Ensure cmake build system exists
if [ ! -f "$WORKDIR/cmake/AmberBuildSystemInit.cmake" ] ; then
ErrMsg "Error: cmake build system is not present."
ErrMsg " If this is a GIT repostitory, you may need to initialize the"
ErrMsg " cmake submodule:"
ErrMsg " $ git submodule update --init --recursive"
exit 1
fi
# Set up cmake options
cmake_options=''
# Figure out compilers
if [ "$COMPILERS" = 'gnu' ] ; then
cmake_options='-DCOMPILER=GNU'
elif [ "$COMPILERS" = 'intel' ] ; then
cmake_options='-DCOMPILER=INTEL'
elif [ "$COMPILERS" = 'pgi' ] ; then
cmake_options='-DCOMPILER=PGI'
elif [ "$COMPILERS" = 'clang' ] ; then
cmake_options='-DCOMPILER=CLANG'
elif [ "$COMPILERS" = 'cray' ] ; then
cmake_options='-DCOMPILER=CRAY'
fi
# Build options
if [ "$USE_MPI" -eq 0 ] ; then
cmake_options="$cmake_options -DMPI=FALSE"
else
cmake_options="$cmake_options -DMPI=TRUE"
fi
if [ "$USE_OPENMP" -eq 0 ] ; then
cmake_options="$cmake_options -DOPENMP=FALSE"
else
cmake_options="$cmake_options -DOPENMP=TRUE"
fi
if [ "$USE_CUDA" -eq 0 ] ; then
cmake_options="$cmake_options -DCUDA=FALSE"
else
cmake_options="$cmake_options -DCUDA=TRUE"
fi
#if [ "${LIB_STAT[$LFFTW3]}" = 'off' ] ; then
# cmake_options="$cmake_options -DUSE_FFT=FALSE"
#fi
if [ $USE_STATIC -eq 1 ] ; then
cmake_options="$cmake_options -DSTATIC=TRUE"
fi
if [ ! -z "$CPPTRAJHOME" ] ; then
cmake_options="$cmake_options -DCMAKE_INSTALL_PREFIX=$CPPTRAJHOME"
else
cmake_options="$cmake_options -DCMAKE_INSTALL_PREFIX=$WORKDIR"
fi
if [ $USE_OPT -eq 0 ] ; then
cmake_options="$cmake_options -DOPTIMIZE=FALSE"
else
cmake_options="$cmake_options -DOPTIMIZE=TRUE"
fi
if [ $USE_DEBUG -eq 0 ] ; then
cmake_options="$cmake_options -DCMAKE_BUILD_TYPE=Release"
else
cmake_options="$cmake_options -DCMAKE_BUILD_TYPE=Debug"
fi
if [ $COMPILE_VERBOSE -eq 1 ] ; then
cmake_options="$cmake_options -DCMAKE_VERBOSE_MAKEFILE=TRUE"
fi
echo " Cmake options: $WORKDIR $cmake_options"
# Run cmake
$CMAKE $WORKDIR $cmake_options
exit $?
}
# ==============================================================================
# MAIN SCRIPT
# Check requirements
if [ -z "`which awk`" ] ; then
Err "CPPTRAJ configure requires 'awk'."
fi
if [ -z "`which grep`" ] ; then
Err "CPPTRAJ configure requires 'grep'."
fi
#echo "Path to configure: $WORKDIR"
#echo "Current dir : $CURRENTDIR"
CONFIGURECMD="./configure $*"
# Process user options.
KEY=''
VALUE=''
while [ ! -z "$1" ] ; do
VALUE=''
# Check for '='
#POS=`expr index "$1" =` # NOT PORTABLE
POS=`echo $1 | awk 'match($0,"="){print RSTART}'`
if [ -z "$POS" ] ; then POS=0 ; fi
if [ $POS -eq 1 ] ; then
Err "'=' cannot be the first character in an argument ($1)"
elif [ $POS -gt 1 ] ; then
# Separate into KEY and VALUE
((PM1 = $POS - 1))
KEY=${1:0:$PM1}
VALUE=${1:$POS}
if [ -z "$VALUE" ] ; then
Err "'$1': Expected <var>=<value>, missing <value>."
fi
eval VALUE=$VALUE 2> temp.err
rm temp.err
else
KEY=$1
fi
#echo "KEY='$KEY' VALUE='$VALUE'" # DEBUG
# Process KEY
case "$KEY" in
'--help' | '-h' ) UsageSimple ; exit 0 ;;
'--full-help' ) UsageFull ; exit 0 ;;
# Compiler Options
'gnu' ) COMPILERS=$KEY ;;
'clang' ) COMPILERS=$KEY ;;
'intel' ) COMPILERS=$KEY ;;
'pgi' ) COMPILERS=$KEY ;;
'cray' ) COMPILERS=$KEY ;;
'CXX' ) CXX="$VALUE" ;;
'CC' ) CC="$VALUE" ;;
'FC' ) FC="$VALUE" ;;
'MPICXX' ) MPICXX="$VALUE" ;;
'MPICC' ) MPICC="$VALUE" ;;
'MPIF90' ) MPIF90="$VALUE" ;;
'CXXFLAGS' ) CXXFLAGS="$VALUE" ;;
'CFLAGS' ) CFLAGS="$VALUE" ;;
'FFLAGS' ) FFLAGS="$VALUE" ;;
'F77FLAGS' ) F77FLAGS="$VALUE" ;;
'LDFLAGS' ) LDFLAGS="$VALUE" ;;
'DBGFLAGS' ) DBGFLAGS="$VALUE" ;;
'NVCC' ) NVCC="$VALUE" ;;
'NVCCFLAGS' ) NVCCFLAGS="$VALUE" ;;
'SHADER_MODEL') SHADER_MODEL="$VALUE" ;;
# Build options
'-cmake' ) USE_CMAKE=1 ;;
'-mpi' ) USE_MPI=1 ;;
'-intelmpi' ) USE_MPI=2 ;;
'-openmp' ) USE_OPENMP=1 ;;
'-cuda' ) USE_CUDA=1 ;;
'-cray' ) PLATFORM='cray' ;;
'-mkl' ) BLAS_TYPE='mkl' ;;
'-nomklfftw' ) MKL_FFTW='no' ;;
'-libsci' ) BLAS_TYPE='libsci' ;;
'-openblas' ) BLAS_TYPE='openblas' ;;
'-macAccelerate' ) BLAS_TYPE='macAccelerate' ;;
'-debug' ) USE_DEBUG=1 ;;
'-d' ) USE_OPT=0 ; USE_DEBUG=1 ;;
'-noopt' ) USE_OPT=0 ;;
'-tune' ) USE_OPT=2 ;;
'-noc++11' ) C11_SUPPORT='no' ;;
'-windows' ) PLATFORM='windows' ;;
# Cpptraj options
'-nolfs' ) LFS='' ;;
'-single-ensemble' ) USE_SINGLEENSEMBLE=1 ;;
'-debugon' ) USE_CPPTRAJDEBUG=1 ;;
# Code profiling
'-profile' ) USE_PROFILE=1 ;;
'-gprofile' ) USE_PROFILE=2 ;;
'-vtune' ) USE_PROFILE=3 ;;
# Linking options
'-static' ) USE_STATIC=1 ;;
'-libstatic' ) USE_STATIC=2 ;;
'-shared' )
USE_SHARED=1
LIB_STAT[$LSANDER]='off'
;;
'-amberlib' )
if [ -z "$AMBERHOME" ] ; then
Err "'-amberlib' requires that AMBERHOME be set."
fi
USE_AMBERLIB=1
;;
'-nomathlib' ) BLAS_TYPE='none' ;;
'--requires-flink' ) REQUIRES_FLINK=1 ;;
'--requires-pthread') REQUIRES_PTHREAD=1 ;;
'--buildlibs' ) BUILD_LIBS=1 ;;
'--nobuildlibs' ) BUILD_LIBS=0 ; BUILDTESTOPT='' ;;
# Install options
'--compile-verbose' ) COMPILE_VERBOSE=1 ;;
'-noclean' ) CLEAN='no' ;;
'--skip-checks' ) PERFORM_CHECKS='no' ;;
'--prefix' )
CPPTRAJHOME=$VALUE
CPPTRAJBIN=$VALUE/bin
CPPTRAJLIB=$VALUE/lib
CPPTRAJINC=$VALUE/include
CPPTRAJDAT=$VALUE/dat
;;
# Hidden debug options
'--debug-parallel' ) DIRECTIVES="$DIRECTIVES -DPARALLEL_DEBUG_VERBOSE" ;;
* ) # Check for library keys
CheckLibraryKeys "$KEY" "$VALUE"
if [ $? -eq 1 ] ; then
Err "Unrecognized Option '$1'. Use '-h' or '--help' for help."
fi
;;
esac
shift
done
# Determine platform if not already specified
if [ -z "$PLATFORM" ] ; then
PLATFORM=`uname -s | awk '{print $1}'`
fi
# Determine architecture bits if not already specified
if [ -z "$NBITS" ] ; then
architecture=`uname -m`
if [ -z "$architecture" ] ; then
WrnMsg "Could not determine 32 vs 64-bit OS - assuming 64-bit."
NBITS=64
elif [ ! -z "`echo $architecture | grep 64`" ] ; then
# Assume if the machine from uname has a 64 it is 64 bit.
NBITS=64
else
NBITS=32
fi
fi
# Should we use cmake instead?
if [ $USE_CMAKE -eq 1 ] ; then
SetupCmake
fi
# Currently need to execute configure in source directory
if [ "$WORKDIR" != '.' ] ; then
Err "CPPTRAJ configure must be executed from the source directory."
fi
#CPPTRAJSRC=$CURRENTDIR
# Basic checks and directives
BasicChecks
# Set up compilers and compiler options
SetupCompilers
# Set up CUDA if needed
if [ "$USE_CUDA" -eq 1 ] ; then
SetupCUDA
fi
# Set up profiling if specified
SetupProfiling
# Basic Compiler tests
if [ "$PERFORM_CHECKS" = 'yes' ] ; then
TestCompilers
fi
# Platform-specific tests
PlatformTests
# Set up external libraries
SetupLibraries
# Test external libraries
TestLibraries
# Set final compile flags
SetupFinalFlags
# ----- Summary ----------------------------------
echo ""
echo "Configuration summary:"
echo -n " Build type:"
if [ $USE_MPI -eq 0 -a $USE_OPENMP -eq 0 -a $USE_CUDA -eq 0 ] ; then
echo " Serial"
elif [ $USE_MPI -eq 0 -a $USE_OPENMP -eq 0 -a $USE_CUDA -ne 0 ] ; then
echo " CUDA"
else
if [ $USE_MPI -ne 0 -a $USE_OPENMP -ne 0 ] ; then
echo -n " Hybrid MPI/OpenMP"
elif [ $USE_MPI -ne 0 ] ; then
echo -n " MPI"
elif [ $USE_OPENMP -ne 0 ] ; then
echo -n " OpenMP"
fi
if [ $USE_CUDA -ne 0 ] ; then
echo " + CUDA"
else
echo ""
fi
fi
if [ ! -z "$SM_CONFIG" ] ; then
echo " $SM_CONFIG"
fi
# DEBUG
#for ((i=0; i < $NLIB; i++)) ; do
# echo " Library: ${LIB_CKEY[$i]} (${LIB_STAT[$i]})"
#done
echo -n " Options:"
for ((i=0; i < $NLIB; i++)) ; do
if [ "${LIB_STAT[$i]}" != 'off' ] ; then
echo -n " ${LIB_CKEY[$i]}"
fi
done
echo ""
if [ $USE_SINGLEENSEMBLE -ne 0 ] ; then
echo " Support for single-ensemble trajectories enabled."
fi
echo " Target platform: $PLATFORM, $NBITS-bit."
echo " $COMPILERS compilers in use."
if [ "$MKL_FFTW" = 'yes' ] ; then
echo " Using FFTW from MKL."
fi
if [ "$C11_SUPPORT" = 'yes' ] ; then
echo " C++11 support enabled."
if [ "${LIB_STAT[$LFFTW3]}" = 'off' ] ; then
echo " PME support disabled (requires FFTW3)."
else
echo " PME support enabled."
fi
else
echo " C++11 support disabled."
echo " PME support disabled (requires C++11 and FFTW3)."
fi
if [ $USE_OPT -eq 1 ] ; then
echo " Compiler optimizations are on."
elif [ $USE_OPT -eq 2 ] ; then
echo " Compiler optimizations and native host tuning are on."
if [ ! -z "$TUNEFLAGS" ] ; then
echo " Custom host tuning flags: $TUNEFLAGS"
fi
else
echo " Compiler optimizations are off."
fi
if [ $USE_DEBUG -ne 0 ] ; then
echo " Compiler debug symbols are on."
fi
if [ $USE_PROFILE -ne 0 ] ; then
echo " Code profiling is on."
fi
if [ "$BLAS_TYPE" != 'other' -a "$BLAS_TYPE" != 'none' ] ; then
echo " BLAS/LAPACK from: $BLAS_TYPE"
fi
if [ -z "$LFS" ] ; then
echo " Large file support is off."
fi
if [ $USE_STATIC -eq 1 ] ; then
echo " Using static linking."
elif [ $USE_STATIC -eq 2 ] ; then
echo " Specified libraries will be linked statically if possible."
fi
#echo DIRECTIVES $DIRECTIVES
#echo CFLAGS $CFLAGS
#echo CXXFLAGS $CXXFLAGS
#echo FFLAGS $FFLAGS
#echo LDFLAGS $LDFLAGS
#echo CPPTRAJ_LIB $CPPTRAJ_LIB
#echo INCLUDE $INCLUDE
#echo REQUIRES_FLINK $REQUIRES_FLINK FLINK $FLINK
echo ""
if [ $USE_MPI -ne 0 -a "${LIB_STAT[$LPARANC]}" = 'off' ] ; then
echo "************************************************************************"
echo "* Warning: No parallel NetCDF library specified. *"
echo "* Warning: NetCDF parallel trajectory output requires parallel NetCDF. *"
echo "************************************************************************"
fi
# ----- Determine which targets to build ---------
CPPTRAJ_TARGET=""
LIBCPPTRAJ_TARGET=""
NPROC_TARGET=""
INSTALL_TARGETS="$INSTALL_DAT"
# Always build cpptraj
CPPTRAJ_TARGET=cpptraj$SFX$EXE
INSTALL_TARGETS=$INSTALL_TARGETS" install_cpptraj"
# Can we build libcpptraj? TODO serial/OpenMP only?
if [ $USE_SHARED -eq 1 ] ; then
LIBCPPTRAJ_TARGET='$(CPPTRAJLIB)/libcpptraj$(SHARED_SUFFIX)'
else
LIBCPPTRAJ_TARGET='nolibcpptraj'
fi
# CUDA
if [ $USE_CUDA -eq 1 ] ; then
CUDA_TARGET='cuda_kernels/libcpptraj_cuda.a'
fi
# Readline
if [ "${LIB_STAT[$LREADLINE]}" = 'bundled' ] ; then
READLINE_TARGET=${LIB_FLAG[$LREADLINE]}
else
READLINE_TARGET='noreadline'
fi
# Xdrfile
if [ "${LIB_STAT[$LXDRFILE]}" = 'bundled' ] ; then
XDRFILE_TARGET=${LIB_FLAG[$LXDRFILE]}
else
XDRFILE_TARGET='noxdrfile'
fi
# TNG
if [ "${LIB_STAT[$LTNGFILE]}" = 'bundled' ] ; then
TNGFILE_TARGET=${LIB_FLAG[$LTNGFILE]}
else
TNGFILE_TARGET='notngfile'
fi
# Arpack
if [ "${LIB_STAT[$LARPACK]}" = 'bundled' ] ; then
ARPACK_TARGET=${LIB_FLAG[$LARPACK]}
else
ARPACK_TARGET='noarpack'
fi
# FFT
if [ "${LIB_STAT[$LFFTW3]}" = 'off' ] ; then
FFT_TARGET='pub_fft.o'
else
FFT_TARGET=''
fi
# ----- Write config.h ---------------------------
cat > config.h <<EOF
# config.h for cpptraj
# configured using: $CONFIGURECMD
EOF
if [ $USE_CUDA -eq 1 -a ! -z "$SHADER_MODEL" ] ; then
echo "# SHADER_MODEL=$SHADER_MODEL" >> config.h
fi
cat >> config.h <<EOF
CPPTRAJHOME="$CPPTRAJHOME"
CPPTRAJBIN="$CPPTRAJBIN"
CPPTRAJLIB="$CPPTRAJLIB"
CPPTRAJINC="$CPPTRAJINC"
CPPTRAJDAT="$CPPTRAJDAT"
INSTALL_TARGETS=$INSTALL_TARGETS
EOF
if [ ! -z "$DBGFLAGS" ] ; then
echo "DBGFLAGS=$DBGFLAGS" >> config.h
fi
cat >> config.h <<EOF
SHARED_SUFFIX=$SHARED_SUFFIX
DIRECTIVES=$DIRECTIVES
INCLUDE=$INCLUDE
LIBCPPTRAJ_TARGET=$LIBCPPTRAJ_TARGET
CUDA_TARGET=$CUDA_TARGET
READLINE_TARGET=$READLINE_TARGET
READLINE_LIB=${LIB_FLAG[$LREADLINE]}
XDRFILE_TARGET=$XDRFILE_TARGET
TNGFILE_TARGET=$TNGFILE_TARGET
ARPACK_TARGET=$ARPACK_TARGET
FFT_TARGET=$FFT_TARGET
CPPTRAJ_LIB=$CPPTRAJ_LIB
LDFLAGS=$LDFLAGS
SFX=$SFX
EXE=$EXE
EOF
#if [ "$FFT_TARGET" = 'pub_fft.o' ] ; then
BuildRules config.h cc cxx f90
#else
# BuildRules config.h cc cxx
#fi
# ----- Create config for external libraries -----
external_config='external.config.h'
cat > $external_config <<EOF
# CPPTRAJ config for external libraries.
# configured using: $CONFIGURECMD
EOF
BuildRules $external_config nvcc cc f77
if [ "${LIB_STAT[$LZIP]}" != 'off' ] ; then
echo "ZLIB_FLAG=${LIB_FLAG[$LZIP]}" >> $external_config
echo "ZLIB_INCL=${LIB_INCL[$LZIP]}" >> $external_config
fi
# ----- Create directories if necessary ----------
if [ ! -e "$CPPTRAJBIN" ] ; then
mkdir "$CPPTRAJBIN"
fi
if [ ! -e "$CPPTRAJLIB" ] ; then
mkdir "$CPPTRAJLIB"
fi
if [ ! -e "$CPPTRAJDAT" ] ; then
mkdir "$CPPTRAJDAT"
fi
# ----- Create a resource file. ------------------
# If PERFORM_CHECKS is 'no' assume we are in AmberTools, no resource file needed.
RFILE=''
if [ "$PERFORM_CHECKS" = 'yes' ] ; then
if [ -z "`echo $SHELL | grep csh`" ] ; then
# We have a sane shell
RFILE=$CPPTRAJHOME/cpptraj.sh
cat > $RFILE <<EOF
export CPPTRAJHOME="$CPPTRAJHOME"
export PATH=$CPPTRAJBIN:\${PATH}
EOF
if [ "$PLATFORM" != "Darwin" ] ; then
echo "export LD_LIBRARY_PATH=$CPPTRAJLIB:\${LD_LIBRARY_PATH}" >> $RFILE
fi
else
# C-shell - blech
RFILE=$CPPTRAJHOME/cpptraj.csh
cat > $RFILE <<EOF
setenv CPPTRAJHOME "$CPPTRAJHOME"
setenv PATH "$CPPTRAJBIN:\${PATH}"
EOF
if [ "$PLATFORM" != "Darwin" ] ; then
echo "setenv LD_LIBRARY_PATH \"$CPPTRAJLIB:\${LD_LIBRARY_PATH}\"" >> $RFILE
fi
fi
fi
# ----- Clean the source directory if necessary --
if [ "$CLEAN" = 'yes' ] ; then
echo 'Cleaning source directory.'
cd src && make clean > make.log 2>&1
rm make.log
fi
if [ ! -z "$RFILE" ] ; then
echo ""
echo "--------------------------------------------------------------------------------"
echo "An environment resource file for CPPTRAJ has been created:"
echo " $RFILE"
echo "You may 'source' this file to set up your environment for CPPTRAJ."
echo "--------------------------------------------------------------------------------"
echo ""
echo "CPPTRAJ configuration complete."
echo ""
fi
exit 0
|