VisIt (Python 3) fails to build with Intel compiler under CentOS 7. #13180
-
|
I'm trying to build VisIt with the Intel compiler under CentOS 7. It fails when it tries to build Python 3, reporting this error message in the log file: This appears to be an resolved issue in Python. The last comment on that bug report suggests that there's already a patch available that has been merged into the most recent version of Python. We're trying to combine |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
-
|
I've now managed to build VisIt using Python 3.7.7 instead, setting the following environment variables prior to calling the build script: export PYTHON3_URL=${PYTHON3_URL:-"https://www.python.org/ftp/python/3.7.7"}
export PYTHON3_FILE_SUFFIX="tgz"
export PYTHON3_VERSION=${PYTHON3_VERSION:-"3.7.7"}
export PYTHON3_COMPATIBILITY_VERSION=${PYTHON3_COMPATIBILITY_VERSION:-"3.7"}
export PYTHON3_FILE="Python-$PYTHON3_VERSION.$PYTHON3_FILE_SUFFIX"
export PYTHON3_BUILD_DIR="Python-$PYTHON3_VERSION"
export PYTHON3_MD5_CHECKSUM="d348d978a5387512fbc7d7d52dd3a5ef" |
Beta Was this translation helpful? Give feedback.
-
|
Thanks @andymwood for updating us on what worked for you. What VisIt branch did you compile? |
Beta Was this translation helpful? Give feedback.
-
|
I compiled from the source for 3.1.1 downloaded from here. |
Beta Was this translation helpful? Give feedback.
-
|
This will be taken care of with #4634. |
Beta Was this translation helpful? Give feedback.
This will be taken care of with #4634.