|
-
May 10th, 2002, 02:37 PM
#1
Thread Starter
Lively Member
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 ?
-
May 10th, 2002, 11:38 PM
#2
Hyperactive Member
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.
-
May 11th, 2002, 07:29 AM
#3
Frenzied Member
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|