解决Singularity编译错误: 'error obtaining VCS status: exit status 128'
这个错误是由于编译Singularity时无法获取版本控制系统(VCS)的状态引起的。可以尝试使用'-buildvcs=false'参数来禁用VCS标记,以解决此问题。
具体操作步骤如下:
-
打开终端。
-
进入Singularity项目的根目录。
-
运行以下命令来编译Singularity,并禁用VCS标记:
make -C builddir -j$(nproc) -buildvcs=false如果你使用的是其他编译命令,请在命令中添加'-buildvcs=false'参数。
这样应该能够成功编译Singularity,并解决VCS状态获取错误。
原文地址: https://www.cveoy.top/t/topic/fzxe 著作权归作者所有。请勿转载和采集!