vote up 4 vote down star
1

My Delphi7 project will not run on my clients computer if i don't have a few of the runtime packages in the path. eg rtl70.bpl

I have Build with runtime packages unticked, so shouldn't they be complied into the exe?

Edit: the Project uses Jedi Packages (TJvPlugin) and running the program with out any plugin installed works fine. As Soon as i add a Plugin, the bpl not found errors reappear. Seems like ill have to live with the extra packages.

flag

5 Answers

vote up 2 vote down check

Your project may use DLLs or COM objects that have been built with Delphi packages.

link|flag
Not DLL/COMs but i have plugin bpls, that might be the reason there – Christopher Chase Oct 8 '08 at 22:51
vote up 0 vote down

You also need to uncheck the "Use Dynamic RTL" on the Linker tab of the Project Options.

Caveat: I'm using C++Builder, but I believe the options are the same.

link|flag
Thankyou, <i>Use Dynamic RTL</i> must be a C++Builder Option, it does not appear in Delphi7 – Christopher Chase Oct 8 '08 at 5:06
vote up 5 vote down

It has been a while, but it seems like there was something where you needed to (1) check build with runtime packages, and then that enables some other editor (maybe list of packages to use), and you (2) make a change there. (3) Then do a full build, and then (4) remove the runtime packages check and do another (5) full build. It is important to do a full build each time.

link|flag
Indeed. For some reason every now and then we notice that Delphi7 just decides not to build packages into our EXE and we have to go and turn "Build with Runtime packages" on, clear the list, and then turn it off again. Wierd. – Ben Daniel Jan 16 at 2:22
vote up 3 vote down

From memory:
1. check the build with runtime packages
2. Remove all the run time packages from the list
3. Full build
4. Uncheck the build with run time packages
5. Full build.

Can't test, don't have D7 anymore...

link|flag
Hehe, I just saw this after adding my comment to Jim's post. Yep, we have to do this very same thing every now and then. – Ben Daniel Jan 16 at 2:24
vote up 0 vote down

One may find this obvious, but check the size of the executable once you've compiled, if it's larger, it'll run. When we manually copy in our updates a smaller dll is a big red flag that something is wrong with the project options.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.