|
-
July 15th, 1999, 02:16 PM
#1
How can I convert Micro$oft libs to Borland libs ?
How can I convert Micro$oft libs to Borland libs ?
-
July 15th, 1999, 02:18 PM
#2
Re: How can I convert Micro$oft libs to Borland libs ?
Are you talking about the import libraries or static libraries?
Regards,
Paul McKenzie
-
July 15th, 1999, 02:27 PM
#3
Re: How can I convert Micro$oft libs to Borland libs ?
I'm talking about the static libraries...
-
July 15th, 1999, 02:44 PM
#4
Re: How can I convert Micro$oft libs to Borland libs ?
The source code needs to be recompiled with the Borland compiler. The reason is that the object code that is generated from the Microsoft compiler may call proprietary Microsoft functions which do not exist in the Borland library. When it comes time to link, you'll get a thousand errors stating that "_foo() symbol is not found".
This has been the case since the old days of DOS. The rule is that you generally can't take an OBJ or library written for one C or C++ compiler and link it with another C or C++ compiler.
Regards,
Paul McKenzie
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
|