Results 1 to 3 of 3

Thread: Borland compiler problem

  1. #1

    Thread Starter
    Lively Member slx47's Avatar
    Join Date
    Apr 2002
    Location
    US
    Posts
    127

    Borland compiler problem

    I got the free version. I tried to compile a win32 opengl program using:

    bcc32.exe -c c:\sw.cpp

    -c is compile but it has errors with the header and libraries anyone know how to compile this ?

  2. #2
    Hyperactive Member
    Join Date
    Sep 2001
    Posts
    396
    Did you configure the borland free compiler after installation?

    Do a search in this forum or refers to the help files that came with it to configure.

  3. #3
    Frenzied Member HarryW's Avatar
    Join Date
    Jan 2000
    Location
    Heiho no michi
    Posts
    1,827
    I haven't used any Borland compilers but I have some experience with compiling things from the command line on different platforms.

    From the sounds of it you're getting errors because the compiler can't find the resources (headers and libraries, as you said) referenced in your code. Usually the compiler will find these resources by searching through a path specified in an environment variable. It might use the PATH env var, or it might also use other env vars like LIBRARY and HEADER, or possibly anything else.

    Alternatively you can probably specify some path information on the command line using a switch like -L or -I.

    If I were you I would look through the documentation that came with the compiler and look out for any references to environment variables.
    Harry.

    "From one thing, know ten thousand things."

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width