News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

\masm32\bin\lib does not do its job...

Started by sittingduck, January 17, 2008, 07:35:23 PM

Previous topic - Next topic

sittingduck

\masm32\bin\lib /OUT:libraryname.lib objectfile1.obj objectfile2.obj

no errors, and no 'libraryname.lib' file.
Nothing wrong with .obj files.

Any ideas?

Tight_Coder_Ex

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.

hutch--

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

Download site for MASM32      New MASM Forum
https://masm32.com          https://masm32.com/board/index.php

sittingduck

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.