Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Makefile: add missing byteorder.h dependency on object files #21

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

trofi
Copy link

@trofi trofi commented Jul 11, 2022

Noticed missing target directory dependency as a build failure in
make --shuffle mode (added in https://savannah.gnu.org/bugs/index.php?62100):

gcc -O2 -DCOLOR -O -std=c99   -c -o readfile.o readfile.c
readfile.c:32:10: fatal error: byteorder.h: No such file or directory
   32 | #include "byteorder.h"
      |          ^~~~~~~~~~~~~

The change adds generated header depenendy for all object files to
avoid precise dependency tracking for individual sources or headers
that could include autogenerated file.

Noticed missing target directory dependency as a build failure in
`make --shuffle` mode (added in https://savannah.gnu.org/bugs/index.php?62100):

    gcc -O2 -DCOLOR -O -std=c99   -c -o readfile.o readfile.c
    readfile.c:32:10: fatal error: byteorder.h: No such file or directory
       32 | #include "byteorder.h"
          |          ^~~~~~~~~~~~~

The change adds generated header depenendy for all object files to
avoid precise dependency tracking for individual sources or headers
that could include autogenerated file.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant