where can I find Lib.exe ?

  • Thread starter Thread starter zorro
  • Start date Start date
Z

zorro

Hello,

I use the VC++ Toolkit 2003 but there is not lib.exe tool included. I have
also downloaded the SDK which provides a lib.exe for Win64 but not for
Win32.

Did you know where I could find this tool on the internet ?

Thank you,
Denis
 
zorro said:
Hello,

I use the VC++ Toolkit 2003 but there is not lib.exe tool included. I
have also downloaded the SDK which provides a lib.exe for Win64 but
not for Win32.

lib.exe is just a front-end for link.exe. You can just do link /lib {lib
command line}. The same is true of dumpbin.exe.

-cd
 
Carl Daniel said:
lib.exe is just a front-end for link.exe. You can just do link /lib {lib
command line}. The same is true of dumpbin.exe.

-cd
Ok, I see. But it's more convenient to have the lib.exe, where could I find
it ?

Tx, Denis
 
zorro said:
Ok, I see. But it's more convenient to have the lib.exe, where could
I find it ?

I couldn't tell you. If it's not in the same place as link.exe then it's
probably not included, although I can't imagine why it wouldn't be.
-cd
 
Back
Top