-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Add flag for Makefile dependency rules generation #1214
Comments
scoder changed component from |
scoder changed priority from |
This would be useful for meson, too. For example, the pxd file is not tracked in this test case. |
Since the |
cython still needs to deal with C headers though, correct? and the pxd file as was pointed out above. |
Cython's dependency collection in It transitively collects .pxd, and .pxi files, as well as include files from I'm pretty sure it also currently does not look into verbatim C code sections (docstrings of |
I guess for cython the header files don't matter as long as they shouldn't trigger cython to re-compiler/transpile (at least from Meson's point of view) as the C/C++ compiler will generate its own depfile that would cover the inclusion of C language headers, so for Meson I guess that just means pxd files? |
The feature was only added to the Whether it should be added to the |
Backported to 0.29.27 in #4576 |
Add flag that will make cython output a rule suitable for make describing the dependencies of the main source file.
like this:
Migrated from http://trac.cython.org/ticket/655
The text was updated successfully, but these errors were encountered: