| 84814e87 | 06-Apr-2023 |
Satish Balay <balay@mcs.anl.gov> |
configure: should rebuild hypre when --download-hypre-commit is changed between builds
Issue: hypre does configure & build in 'HYPRE_DIR/src'. To support this - 'self.packageDir' is changed during t
configure: should rebuild hypre when --download-hypre-commit is changed between builds
Issue: hypre does configure & build in 'HYPRE_DIR/src'. To support this - 'self.packageDir' is changed during the build process. Hence location of 'pkg.gitcommit' file is not consistent relative to 'self.packageDir' in various configure stages
Reported-by: Jed Brown <jed@jedbrown.org>
show more ...
|
| db9cd228 | 05-Apr-2023 |
Satish Balay <balay@mcs.anl.gov> |
configure: macos version check can fail
Reported-by: "Kaus, Boris" <kaus@uni-mainz.de>
It can be reproduced with this: sandbox:${WORKSPACE}/srcdir/petsc-3.18.0 # ./configure --prefix=/workspace/des
configure: macos version check can fail
Reported-by: "Kaus, Boris" <kaus@uni-mainz.de>
It can be reproduced with this: sandbox:${WORKSPACE}/srcdir/petsc-3.18.0 # ./configure --prefix=/workspace/destdir/lib/petsc/double_real_Int32/ ******************************************************************************* TypeError or ValueError possibly related to ERROR in COMMAND LINE ARGUMENT while running ./configure ------------------------------------------------------------------------------- invalid literal for int() with base 10: '' ******************************************************************************* <snip> File "/workspace/srcdir/petsc-3.18.0/config/BuildSystem/config/utilities/macosFirewall.py", line 12, in __init__ self.isDarwin = config.setCompilers.Configure.isDarwin(self.log) File "/workspace/srcdir/petsc-3.18.0/config/BuildSystem/config/setCompilers.py", line 664, in isDarwin if not isUname_value: config.setCompilers.Configure.isUname(log) File "/workspace/srcdir/petsc-3.18.0/config/BuildSystem/config/setCompilers.py", line 630, in isUname v = tuple([int(a) for a in platform.mac_ver()[0].split('.')]) File "/workspace/srcdir/petsc-3.18.0/config/BuildSystem/config/setCompilers.py", line 630, in <listcomp> v = tuple([int(a) for a in platform.mac_ver()[0].split('.')])
sandbox:${WORKSPACE}/srcdir/petsc-3.18.0 # python3 Python 3.9.7 (default, Nov 24 2021, 21:15:59) [GCC 10.3.1 20211027] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import platform >>> platform.mac_ver() ('', ('', '', ''), '') >>> platform.mac_ver()[0].split('.') [''] >>> tuple([int(a) for a in platform.mac_ver()[0].split('.')]) Traceback (most recent call last): File "<stdin>", line 1, in <module> File "<stdin>", line 1, in <listcomp> ValueError: invalid literal for int() with base 10: ''
show more ...
|