Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Deploying C++ builder 6 project

21 views
Skip to first unread message

Patrick

unread,
Mar 19, 2007, 10:39:12 AM3/19/07
to
Hi Deployment

How do I go about deploying a C++ Builder 6 project to run on any
machine
What DLL do I need.
Is their any way it can be deployed without including DLL.

Pat

Ed Mulroy

unread,
Mar 21, 2007, 11:01:35 PM3/21/07
to
I assume that you are not really trying to move a project to another machine
but instead are trying to create an executable which can be run on another
machine.

Select Project|Options

Click the Linker tab
Uncheck Use dynamic RTL

Click the Packages tab
Uncheck Build with runtime packages

Click Ok

Then do a Project|Build

A program which does not use any DLL's other than system-supplied ones is
said to be static linked. If everything that you used in the program has a
static library version available then you can static link the program. If
any package that you used has only a dynamic version then you will still
need to supply it to the using machine and, for easiest use, should place it
in the same directory as the exe.

To see what DLL's/Modules are needed by the program, open a command window,
move to the directory where the executable is found and give a command like
this:

tdump -em. progname.exe
(do not overlook the period at the end of -em. )

. Ed

> Patrick wrote in message
> news:1174315152.7...@p15g2000hsd.googlegroups.com...

0 new messages