Subj : Re: BC++ And BCBuilder at same time To : borland.public.cpp.borlandcpp,borland.public.cppbuilder.ide,borland.public.install.bcpp,borland.public.install.cppbuilder From : "Dennis Jones" Date : Fri Nov 28 2003 07:40 pm "David Patte" wrote in message news:3A2514BB.8FD98FA2@relativedata.com... > I have both Borland C++ 5.02 with patch1 > and BCB 5 with patch 1 > both installed on my machine > > I notice that my path in my autoexec.bat indicates paths all my borland > products (including these two) > > Since BCC32.exe and a few other files are on both paths, but different > files, will it choose the correct .exe when I alternate between these > two compilers? They will work fine if you only use the IDE's. But if you are using the command-line compilers, then the first one in the path will always take precedence. On my system, the BCB path is first (because I use it most), so when I generate makefiles for my old BC++ 5.02 projects, I always specify an explicit path to the compiler. For example, in my BC++ 5.02 makefiles, I always change from: BCC32 = Bcc32 +BccW32.cfg to: BCC32 = c:\bc5\bin\Bcc32 +BccW32.cfg because if I don't, MAKE will try to use the BCB compiler, which won't work on my BC++ 5.02 projects. - Dennis .