Thread: Borland C++BuilderX, fatal error

  1. #1
    Registered User beezm's Avatar
    Join Date
    Aug 2005
    Location
    Carriere, MS & Madison, SD
    Posts
    1

    Question Borland C++BuilderX, fatal error

    Well I'm not sure if anyone here will be able to help me with this problem. It isn't really a problem with code, but the compiler/IDE itself.

    I am running Borland C++BuilderX Personal v1.0

    I've been trying to learn this IDE lately because... well.. I actually bought it o_O! Well I didn't use my money, but anyway...

    Whenever I try building/running any code, I get the following error(s) in the build messages window :
    Code:
    bcc32 -D_DEBUG -g100 -j25 -Od -r- -k -y -v -vi- -tWC -c -IC:\devel\CBuilderX\include -oC:\devel\src\c++\phonebook\windows\Debug_Build\untitled1.obj   untitled1.cpp 
    Borland C++ 5.6.4 for Win32 Copyright (c) 1993, 2002 Borland
    untitled1.cpp:
    ilink32 -D -ap -Tpe -x -Gn -v -LC:\devel\CBuilderX\lib  c0x32.obj windows\Debug_Build\untitled1.obj,C:\devel\src\c++\phonebook\windows\Debug_Build\phonebook.exe,,cw32.lib import32.lib,, 
    Turbo Incremental Link 5.65 Copyright (c) 1997-2002 Borland
    
    Fatal: Too many EXE file names: \phonebook\windows\Debug_Build\phonebook.exe
    
     ILINK32 exited with error code: 2
    Build cancelled due to errors
    Figured I'd paste the entire output, not just the error, but as you can see the actual error i'm getting is "Fatal: Too many EXE file names:". Any ideas as to what this is exactly and how to go about fixing it ?

    Thanks.

  2. #2
    and the hat of int overfl Salem's Avatar
    Join Date
    Aug 2001
    Location
    The edge of the known universe
    Posts
    39,659
    > c0x32.obj windows\Debug_Build\untitled1.obj,
    According to the help, you need a comma after c0x32.obj
    If you dance barefoot on the broken glass of undefined behaviour, you've got to expect the occasional cut.
    If at first you don't succeed, try writing your phone number on the exam paper.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Compiling sample DarkGDK Program
    By Phyxashun in forum Game Programming
    Replies: 6
    Last Post: 01-27-2009, 03:07 AM
  2. more then 100errors in header
    By hallo007 in forum Windows Programming
    Replies: 20
    Last Post: 05-13-2007, 08:26 AM
  3. Post...
    By maxorator in forum C++ Programming
    Replies: 12
    Last Post: 10-11-2005, 08:39 AM
  4. pointer to array of objects of struct
    By undisputed007 in forum C++ Programming
    Replies: 12
    Last Post: 03-02-2004, 04:49 AM
  5. Couple C questions :)
    By Divx in forum C Programming
    Replies: 5
    Last Post: 01-28-2003, 01:10 AM