gittup
gittup
I don't normally use Visual C++ - does using /Z7 help? It sounds like it will embed the debugging info in the object, and then you can use some tools...
I don't think you want to ignore the gcm.cache directory completely, since that will create problems when you start having your modules depend on other modules that you create. Eg:...
> First, in light of https://sfconservancy.org/GiveUpGitHub/ I'd like to ask if there is any other way to contribute to the project that is not GitHub? Sure, this github repo isn't...
I'm not sure what the idea is :). Can you elaborate on what you're trying to achieve?
You mean tup would compile files without doing a fork()/exec()? How much time would that save vs. invoking the compiler? And is most of the overhead of the fork/exec really...
I guess give it a shot and see how it goes! I imagine it could be implemented similarly to !tup_ln (mostly in parser.c and updater.c I think).
Thanks for the feedback! rules.tup would've probably been a better name instead of Tuprules.tup. However, I don't think make.tup makes sense, because it doesn't have anything to do with 'make'....
If your plan is to ignore all the file accesses anyway, might it make more sense to use make for that level of your project? In other words, instead of...
Thanks for taking a look at this. However, I think your approach would disable a very valuable safety check in tup that prevents subprocesses from writing to files that aren't...
On Fri, Apr 25, 2014 at 4:09 PM, Austin Hicks [email protected]: > I just tried to move a simple project to Tup because, hey, why not and it > looks...