0
votes

I already have a static lib which generated by Visual Studio 2019. Let say it is a.lib. How do I append an obj (new.obj) to a.lib ?

Can LIB.exe do that for me ? If so, how to do that ?

link.exe -lib a.lib new.obj - RbMm
Most command line tools show a brief help when called without any argument. (At least the good ones.) Did you try that? Additionally I would expect that you read the documentation of your tools. - the busybee