-
Notifications
You must be signed in to change notification settings - Fork 3
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
make creates .c files in the main source folder #2
Comments
I did a bit of reading on cython and maybe this is hard to fix since it is the way that cython works (i.e. it doesn't have a directive that allows you to give a "build" directory. The way sage seems to fix this problem, is to first copy over the entire source to a new directory and then build there. |
Well, let's hope that the projects don't contain a large number of cython files for now... |
I agree that fixing it right now is maybe not necessary. But I think the issue should not be closed, since it really is an issue which we might want to keep track of. |
Agreed. |
I just tried using this template and found out that the way this package is building the cython code is quite messy, since it leaves a .c file in the same folder as the pyx file. This is going to be really annoying, since you don't want to add *.c to gitignore, and you also don't want to check which c file you have to manually remove while doing make clean.
The text was updated successfully, but these errors were encountered: