I've downloaded just the compiler for C++Builder, but I am stuck on how to link in the header files. The docs say:
2. From the bin directory of your installation:
a. Add "c:\ Borland\Bcc55"
to the existing path
b. Create a bcc32.cfg file which will set
the compiler options for the Include
and Lib paths (-I and -L switches to
compiler) by adding these lines:
-I"c:\ Borland\Bcc55\include"
-L"c:\ Borland\Bcc55\lib"
c. Create an ilink32.cfg file which will set
the linker option for the Lib path by
adding this line:
-L"c:\ Borland\Bcc55\lib"
I am getting the error message:
Error E2209 prog.c 2: Unable to open include file 'stdio.h'
And I think it's because of configs that haven't been implemented properly.
What exactly do you have to do on b) and c) ?
AtW? Mark? Anyone else?
2. From the bin directory of your installation:
a. Add "c:\ Borland\Bcc55"
to the existing path
b. Create a bcc32.cfg file which will set
the compiler options for the Include
and Lib paths (-I and -L switches to
compiler) by adding these lines:
-I"c:\ Borland\Bcc55\include"
-L"c:\ Borland\Bcc55\lib"
c. Create an ilink32.cfg file which will set
the linker option for the Lib path by
adding this line:
-L"c:\ Borland\Bcc55\lib"
I am getting the error message:
Error E2209 prog.c 2: Unable to open include file 'stdio.h'
And I think it's because of configs that haven't been implemented properly.
What exactly do you have to do on b) and c) ?
AtW? Mark? Anyone else?
Comment