up vote 3 down vote favorite
1
share [g+] share [fb]

I'm trying to build 3 packages, A, B and C. A defines some base classes that are used in B and C. I've got all 3 of them in the same project group, all set up to output to the same custom BPL output folder. This folder is in the search path for B and C. But when I go to build B and C, the compiler chokes on the Requires list. "Required package 'A' not found."

How do I tell B and C where to find A so they'll build correctly?

link|improve this question

68% accept rate
Validating to see that even superstars like you run into problems like this! (You've helped me many times here). Thanks for the clear question post. – Jamo Jul 31 '09 at 22:09
I am having the same problem. The files exist, the folders exit, the paths are set. Delphi says it can't find a package. Either it dislikes the DCP file, the BPL file, or the folder/path configuration. Lovely. – Warren P Jul 16 '10 at 3:08
feedback

3 Answers

up vote 8 down vote accepted

Either the package can't be found, or the compiler is confused. In the later case, a restart sometimes helps. Then a manual build from all packages in order.

If it really can't be found, check if all package (bpl and dcp) and dcu files are available. You need both.

link|improve this answer
2  
That turned out to be the problem. I needed to tell it where to find the DCP file too. – Mason Wheeler Apr 18 '09 at 20:26
Struggled with that one once. – Gamecat Apr 18 '09 at 21:58
having this problem now with a DCP file that exists but something else is unsettling delphi and it won't read the DCP file, no amount of restart will help, or rebuild. – Warren P Jul 16 '10 at 3:12
feedback

If this happens when the IDE is trying to load a package: your package output directory (where the *.bpl files go) has to be on your system's PATH environment variable. Packages are statically linked DLLs, Windows has to be able to find them to load them.

If this happens when building the packages: any/all of your DCP output directories (where the *.dcp files go) have to be in the dependent projects' search path so that the compiler can find the compiled packages. You can also leave the DCP output directory of the package project empty - in which case the global DCP output directory set in Tools\Options\Library is used; the dependent projects then don't need to include it in their search path.

link|improve this answer
Wow, a BPL folder NOT in your path. The IDE should whine about this. – Warren P Jul 16 '10 at 3:15
feedback

I would check to make sure where you are writing the .dcp files for the packages. once you have this, check that the search path of each package has an entry for the .dcp output folder.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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