Topic: Help!!
Author: lock@iastate.edu (Williams Lock)
Date: 27 Feb 1995 06:40:56 GMT Raw View
Hi,
I just install my Borland C++ 4.0 (CD-ROM) version. I tried to compile
the following code.
#include <iostream.h>
void main()
{
int i, j , k;
cin >> i >> j >> k;
cout << i << j << k;
}
The compiler did not give me any error message. But when I tried to build
the program. The following error message was shown:
Linker Error : Undefined symbol OwlMain(int,char far* far*)
in library file D:\BC4\LIB\owlwi.lib in module winmain.
If any one know what the error is, please send me a message or post the
solution. Thanks!!.
--
Pin-Hsiung Lock
lock@iastate.edu
phone:515-296-0302
Author: b91926@fsgm01.fnal.gov (David Sachs)
Date: 27 Feb 1995 15:44:56 -0600 Raw View
lock@iastate.edu (Williams Lock) writes:
>Hi,
> I just install my Borland C++ 4.0 (CD-ROM) version. I tried to compile
>the following code.
>
> #include <iostream.h>
> void main()
> {
> int i, j , k;
> cin >> i >> j >> k;
> cout << i << j << k;
> }
> The compiler did not give me any error message. But when I tried to build
>the program. The following error message was shown:
> Linker Error : Undefined symbol OwlMain(int,char far* far*)
> in library file D:\BC4\LIB\owlwi.lib in module winmain.
> If any one know what the error is, please send me a message or post the
>solution. Thanks!!.
You specified the wrong build options. Specify that the target is a
DOS or "Easywin" program, and it should link correctly.