David Anderson

Results 140 comments of David Anderson

It sounds like it's failing to compile for some reason. You can debug why with this: ``` cd .ambuild2 C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars32.bat cl test.c /o test-c.exe /nologo /showIncludes...

Sorry for getting to this so late - yes, AMBuild can do this, and perhaps we should make it a builtin feature. Until then you can copy this script: https://github.com/alliedmodders/sourcemod/blob/master/plugins/AMBuilder...

Is this for a plugin? The docs say Meta_Query's signature should be non-const, but in the code it's internally consistent and the string really is const.

We const-qualified these to avoid compiler warnings. You could try to get the same changes upstreamed to metamod-p. Since they are supposed to be ABI compatible it shouldn't matter, you...

I'm not 100% against this, but probably more like 85% against. It'd probably be a diagnostic command that is annoying to invoke and marks every node in the graph as...

Sorry for seeing this so very late. By default AMBuild adds full symbolic debug information to binaries. There is no way to toggle this off. Obviously that's bad for packaging...

AMBuild treats the compilers almost identically, so that is surprising. What version?

This is a perfectly good idea. I unfortunately don't have time to maintain Stripper:Source anymore, but I'm happy to review patches. (And/or failing that, give it a new owner.)

Thanks for doing this! Will take a look this weekend hopefully. Namespaces are good avoiding for name collisions.

Not everything has to be solved in one PR! Happy to take incremental improvements. API changes don't get frozen until release.