\masm32\bin\lib /OUT:libraryname.lib objectfile1.obj objectfile2.obj
no errors, and no 'libraryname.lib' file.
Nothing wrong with .obj files.
Any ideas?
Your command line is correct, so the only think I can think of is that libraryname.lib is putting it somewhere you haven't anticipated. Maybe use windows search to see if it exists at all.
Probably getting the command line right will help.
here is the library build command line from the masm32 library.
\masm32\bin\link -lib *.obj /out:masm32.lib
Thats right guys.
\masm32\bin\link -lib *.obj /out:masm32.lib
works like a charm.
\masm32\bin\lib /OUT:masm32.lib module1.obj module2.obj
works too but as you suggested the file was not placed in the current dir.