View Single Post
  #2  
Old 10-20-2011, 04:37
Kerlingen Kerlingen is offline
VIP
 
Join Date: Feb 2011
Posts: 324
Rept. Given: 0
Rept. Rcvd 276 Times in 98 Posts
Thanks Given: 0
Thanks Rcvd at 309 Times in 96 Posts
Kerlingen Reputation: 200-299 Kerlingen Reputation: 200-299 Kerlingen Reputation: 200-299
Delphi cannot create *.LIB files. The only way to do something similar is to tell Delphi to generate C++ compatible *.OBJ files (check the "-J" command line switches) and link them. Delphi can only output to OMF format, not COFF. The best choice is probably to use C++ Builder instead of Visual C++.

Why don't you want to use DLLs? They don't have a real disadvantage and there are many programs available which "bundle" DLLs with the EXE files.
Reply With Quote
The Following User Gave Reputation+1 to Kerlingen For This Useful Post:
Newbie_Cracker (10-20-2011)