You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/sphinxman/source/build_planning.rst
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1323,7 +1323,7 @@ Debugging |PSIfour| has gotten a little confusing now that it's running through
1323
1323
.. valgrind --suppressions=<file_name>
1324
1324
.. ```
1325
1325
..
1326
-
.. will run valgrind with the suppression file located on disk at "file_name". Lucky for you, Psi4 comes with such a suppression file at [``$top-level-psi4-dir/lib/valgrind-python.supp``](../blob/master/lib/valgrind-python.supp). This should remove all the boost python errors.
1326
+
.. will run valgrind with the suppression file located on disk at "file_name". Lucky for you, Psi4 comes with such a suppression file at [``$top-level-psi4-dir/psi4/share/psi4/scripts/valgrind-python.supp``](../blob/master/psi4/share/psi4/scripts/valgrind-python.supp). This should remove all the python errors.
1327
1327
..
1328
1328
.. The other error, boost overflow error arises from ``src/lib/libmints/sieve.cc`` where the inverse
1329
1329
.. of the complementary error function is being called. The internet seems to claim that this is a
Copy file name to clipboardExpand all lines: external/upstream/simint/CMakeLists.txt
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,13 @@ if(${ENABLE_simint})
14
14
15
15
include(ExternalProject)
16
16
message(STATUS"Suitable simint could not be located, ${Magenta}Building simint${ColourReset} instead.")
17
+
18
+
if (CMAKE_CXX_COMPILER_ID MATCHES Intel)
19
+
if (NOT (CMAKE_CXX_COMPILER_VERSION VERSION_LESS"18.0.0"))
20
+
message(FATAL_ERROR "ICPC version 2018 builds an incorrect simint library. Use the conda package or build simint separately with GNU or Intel 2017 compilers.")
0 commit comments