jacereda
jacereda
The injection is based on LD_PRELOAD/DYLD_INSERT_LIBRARIES, the injected code must reside as a separate file AFAIK.
We can always cat both files and generate the DLL in a temporary directory. Would require checking the executable and DLL timestamps to decide if the DLL must be overwritten....
RR = Relative Read I made a mistake in the suite, the upper case variants mean fsatrace was unable to determine the full absolute path for the access. Should be...
I don't think Shake should handle it. It's something that should disappear as soon as everything is working properly. It's there mainly to help figuring out if some tool is...
How would that help with auto deps? Right now I'm notifying after a successful open(), do you mean notifying before the actual open() happens? Something like a callback that allows...
I still fail to see why `needed` is less powerful than `need`. The first time you build, say, a .c file, you don't need the dependencies, the resulting .o is...
Is the purpose to avoid specifying `need` dependencies? So a generator doesn't need to specify that it's generating foo.c and let `AutoDeps` figure it out?
If this is going to happen I think I prefer to turn it into a library. Otherwise I think the communication overhead can make it a bit slow.
Oh, of course, I messed up the thing. So no more `need` version.h/config.h/whatever. Sounds good, we can approach it when the thing has proper tests and is working correctly across...
Well, the library could always be opened dynamically if present, the downside being that both apps would be sharing memory (not a small one).