fzy
fzy copied to clipboard
Makefile dependency issue
We recently conducted a study to detect build dependency errors, focusing on missing and redundant dependencies. *Missing dependencies (MDs), are dependencies that are not declared in the build script but will be used in the full build. MDs prevent GNU Make from recompiling programs after they have been modified and regenerating all the targets that contain them, resulting in incorrect incremental builds *Redundant dependencies (RDs), are dependencies that are declared in the build script but will not be used in the full build. RDs refer to static build dependencies which declare dependencies that are not the actual build dependencies of the target. RDs cause the build system to perform unnecessary incremental builds. In addition, RDs cause targets that could be executed in parallel to be executed sequentially, reducing the build efficiency. We analyze the actual software construction process and detect dependency errors. We have detected the following dependency errors in your public project. Please help us to check these dependency errors.
Base on Commit ID: 28195b3
For quick check: src/fzy.o miss dependencies: /fzy/src/match.h, /expproject/fzy/src/tty.h, /fzy/src/options.h, /fzy/src/choices.h
For all errors: dep_error_clean_28195b3.csv