Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

No dependecies

Status
Not open for further replies.

ccatallin

Programmer
Sep 8, 2001
3
CA
In Borland Builder C++ 4.0, how can I include all the libraries into the final exe, the same way as in Visual C++
were we can statically link the libraries ... of course all
other ocx/dll etc. the application uses still has to be carried with the application but that's another problem.

Thx
 
try this:

Goto Project->Options. or push, 'Shift-Ctrl-F11'. then goto packages, and un-check 'build with runtime packages'. the checkbox is at the bottom.

then goto Linker and un-check 'Use dynamic RTL'.
then re-compile your project.

this will make your executable a standalone. no longer dependent on the Borland compiler.

I'd be more than happy to answer any questions



Cyprus
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top