Bob Dröge
Bob Dröge
@boegelbot please test @ generoso
``` sanity check command pip check exited with code 1 (output: poetry 1.1.7 has requirement keyring=21.2.0; python_version >= "3.6" and python_version < "4.0", but you have keyring 23.9.3. ``` I...
I just had the same problem with https://github.com/easybuilders/easybuild-easyconfigs/pull/17011: ``` == Temporary log file in case of crash /data/eb/tmp/eb-gtoxwhsl/easybuild-ku6gw88k.log easybuilders/easybuild-easyconfigs PR #17011 was submitted by iotaka, you are using GitHub account...
I now tried it with GCC 12.3.0 as well, but seeing the same issue. Also tried GCC 13.2.0, but then the compilation fails with: ``` /tmp/eb-vtlvwo0l/tmpxuldwk2g/rpath_wrappers/gxx_wrapper/g++ --sysroot=/cvmfs/software.eessi.io/versions/2023.06/compat/linux/aarch64 -O2 -ftree -vectorize...
Thanks @jan-wassenberg. I've tried building it with Clang, and in that case everything did indeed work fine. But for now we will just ignore this failing test, as we would...
Forgot to mention it, but the same version of waLBerla works fine on this system (regardless of `UCX_LOG_LEVEL`) when using even older versions of the compiler toolchain: ``` Currently Loaded...
Sure! Here it is (for the `python` process): ``` (gdb) thread apply all backtrace Thread 4 (Thread 0x7f5467989700 (LWP 903569)): #0 0x00007f547e24775d in __lll_lock_wait () from /lib64/libpthread.so.0 #1 0x00007f547e240b44 in...
> A quick search shows it could be this issue: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=903514 Thanks, I looked into this a bit, and I'm not sure if I completely understood that issue. But I...
I don't know how broad the issue is (i.e. which applications set `-Wall -Werror` besides this one), but for `imkl-FFTW` it could be easily solved by adjusting the `imkl` easyblock...
A somewhat cleaner solution, the following regex for just adding `-Wno-unused-command-line-argument` to the `makefiles` seems to work fine too: ``` regex_subs = [('-Werror', '-Werror -Wno-unused-command-line-argument')] ```