我正在尝试建立LALSuite。我已将其Git存储库克隆到lalsuite文件夹中。该文件夹包含一个名为00boot的文件。根据官方说明,我在文件夹的目录中运行bash中的./00boot。我收到以下错误:
Observable<Integer> recursiveObservable = Observable.create(emitter -> {
System.out.println("Calling to emit data");
Lists.newArrayList(1, 2, 3, 4, 5, 6, 7, 8, 9, 0).forEach(emitter::onNext);
emitter.onComplete();
});
recursiveObservable
.buffer(2)
.repeat()
.subscribe(integers -> {
System.out.println(integers);
TimeUnit.SECONDS.sleep(1);
});
00boot的内容:
00boot: running autoreconf
configure.ac.7: error: required file 'src/LALFrameVCSInfo.c.in' not found
configure.ac.7: error: required file 'src/LALFrameVCSInfo.h.in' not found
autoreconf: automake failed with exit status: 1
!!! ./00boot: autoreconf failed
问题在于lalsuite / lalframe / src中存在两个有问题的文件。为什么控制台说他们不存在/无法找到它们,我该如何解决这个问题?提前谢谢。