I am trying to compile a rather large project with Borland C++ Builder 5.5. The project compiles in the IDE, but is much too slow. However, when I compile with the command line I get an ambiguity error that was not present in the IDE:

Error E2015 Project.h 536: Ambiguity between 'TTreeNode' and 'Comctrls::TTreeNode'

My command line arguments are as follows:

d:\PROGRA~1\Borland\CBUILD~1\bin..\BIN\bcc32 -Od -Vx -Ve -X- -r- -a8 -5 -b- -d -k -vi -c -tW -tWM -w-par -I[really big list of include files] -nQ:\output [really big list of files to compile]

This command is generated by make.exe.

link|improve this question

The last -I seems to specify an include directory, but the directory itself is missing (or part of the reaaly big list of files). The \bin..\ also seems a bit strange. Are you sure you got the command line right? – Renze de Waal Feb 24 '09 at 22:22
I've fixed up the command line in the description. The \bin..\ does seem strange, but I'm sure it's not the problem seeing as tools are found without a problem and there seems to be no referencing errors. – Everett Feb 25 '09 at 13:36
feedback

1 Answer

up vote 0 down vote accepted

I believe the problem lies in the fact the command line compiler and the IDE compiler are different. The command line appears to be more strict about ambiguity whereas the IDE flags it only as a warning. In light of this, I guess some projects simply can't be built with the command line tools even if they build in the IDE.

link|improve this answer
Even though they are different, the C++ rules are the same. I expect the problem is far more likely that the options passed to the compilers are different. I believe that BCB5 had the option "Show command line" (Tools->Environment options menu) which should help. (It is possible that this wasn't introduced until a later version) – David Dean Feb 24 '10 at 16:21
feedback

Your Answer

 
or
required, but never shown

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