473,699 Members | 2,579 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Receiving ostream linker errors from VC6 built library

I have a library that is built in VC6 which contains references to the new
iostream instead
of "iostream.h " to accomodate my .NET Studio built C++ application. However,
in debug mode, I
obtain the following linker warnings. The object files referenced are part
of the VC6 built libraries:

MiLibd.lib(MiIn ternetAddress.o bj) : error LNK2019: unresolved external
symbol "__declspec(dll import) class std::basic_ostr eam<char,struct
std::char_trait s<char> > & __cdecl std::operator<< (class
std::basic_ostr eam<char,struct std::char_trait s<char> > &,char const *)"
(__imp_??6std@@ YAAAV?$basic_os tream@DU?$char_ traits@D@std@@@ 0@AAV10@PBD@Z)
referenced in function "public: __thiscall
MiInternetAddre ss::MiInternetA ddress(unsigned short)"
(??0MiInternetA ddress@@QAE@G@Z )

MiLibd.lib(MiSo cketInitializer .obj) : error LNK2001: unresolved external
symbol "__declspec(dll import) class std::basic_ostr eam<char,struct
std::char_trait s<char> > & __cdecl std::operator<< (class
std::basic_ostr eam<char,struct std::char_trait s<char> > &,char const *)"
(__imp_??6std@@ YAAAV?$basic_os tream@DU?$char_ traits@D@std@@@ 0@AAV10@PBD@Z)
Any ideas on what can cause the LINK2019 warnings for the basic_ostream
package after building
my VS.Net built c++ application. Are there signature differences that can
cause issues?

Would appreciate any form of an idea!!!

Thanks
Paul
Nov 17 '05 #1
1 1746
Paul Brun wrote:
I have a library that is built in VC6 which contains references to the new
iostream instead
of "iostream.h " to accomodate my .NET Studio built C++ application. However,
in debug mode, I
obtain the following linker warnings. The object files referenced are part
of the VC6 built libraries:

MiLibd.lib(MiIn ternetAddress.o bj) : error LNK2019: unresolved external
symbol "__declspec(dll import) class std::basic_ostr eam<char,struct
std::char_trait s<char> > & __cdecl std::operator<< (class
std::basic_ostr eam<char,struct std::char_trait s<char> > &,char const *)"
(__imp_??6std@@ YAAAV?$basic_os tream@DU?$char_ traits@D@std@@@ 0@AAV10@PBD@Z)
referenced in function "public: __thiscall
MiInternetAddre ss::MiInternetA ddress(unsigned short)"
(??0MiInternetA ddress@@QAE@G@Z )

MiLibd.lib(MiSo cketInitializer .obj) : error LNK2001: unresolved external
symbol "__declspec(dll import) class std::basic_ostr eam<char,struct
std::char_trait s<char> > & __cdecl std::operator<< (class
std::basic_ostr eam<char,struct std::char_trait s<char> > &,char const *)"
(__imp_??6std@@ YAAAV?$basic_os tream@DU?$char_ traits@D@std@@@ 0@AAV10@PBD@Z)
Any ideas on what can cause the LINK2019 warnings for the basic_ostream
package after building
my VS.Net built c++ application. Are there signature differences that can
cause issues?


Yes. The VC7.1 version of the library is different from the VC6 one -
the two can't be mixed at all.

The easiest fix is to recompile your VC6 library under VC.NET. Failing
that, you'll have to write a wrapper library in VC6 that exposes a C or
COM interface, since neither of these interface types suffers from
versioning problems.

The moral is: don't use C++ classes (and particularly standard library
ones) in the interface of DLLs or binary libraries, since Microsoft's
C++ ABI is not stable between versions, particularly the standard
library ABI. If you want to use C++ in a library, make sure you supply
(possible obfuscated) source code so that it can be recompiled if necessary.

Tom
Nov 17 '05 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
1810
by: TGF | last post by:
Hello, I am creating a console app. I try to link a static library by including it in the Linker-Input-Additional Dependencies field under the Project properties. Then I specify the path to the library in Linker-General-Addition Library Directories field under the Project options. The first question I have is....is this the correct way to include a static library. If not, then what is the correct way to do it (I need to make .NET...
0
1628
by: TGF | last post by:
Hello, I am creating a console app. I try to link a static library by including it in the Linker-Input-Additional Dependencies field under the Project properties. Then I specify the path to the library in Linker-General-Addition Library Directories field under the Project options. The first question I have is....is this the correct way to include a static library. If not, then what is the correct way to do it (I need to make .NET...
4
11326
by: Saran | last post by:
Hi All, I'm getting the following linker error when I try to build a library. nafxcw.lib(appcore.obj) : error LNK2001: unresolved external symbol ___argv nafxcw.lib(appcore.obj) : error LNK2001: unresolved external symbol ___argc nafxcw.lib(apphelp.obj) : error LNK2001: unresolved external symbol __mbctype nafxcw.lib(filelist.obj) : error LNK2019: unresolved external symbol __mbctype referenced in function "void __stdcall...
2
3385
by: Senapathy | last post by:
VC++ .NET 2003 Standard Edition Win XP, SP2 Hi, I have a code that builds under VC6.0, but fails to link in VC7.1. The offending code is as follows: _AFX_RICHEDIT_STATE* const pEditState = _afxRichEditState;
3
8066
by: Chucker | last post by:
Hi Folks, I got a Wrapper Dll around a native C++ static library. In .NET 1.1 this worked fine. When moving to .NET 2.0 I get a couple of unresolved externals / linker errors: Error 16 error LNK2028: unresolved token (0A000007) "extern "C" void __clrcall ___CxxCallUnwindDtor(void (__clrcall*)(void *),void *)" (?___CxxCallUnwindDtor@@$$J0YMXP6MXPAX@Z0@Z) referenced in function "public: virtual __thiscall...
1
2264
by: Felix | last post by:
After porting a project from VC6 to VC.NET 2003 I have a very strange problem generating link error 1104 for import libraries. I just ported the project and made some small adaptions so it fits the new IDE. The project itself links against some import libraries belonging to dll's I wrote (these dll's have been ported too, of course). To keep things simple I only use one import library here. To tell the linker it should link against
1
2404
DeMan
by: DeMan | last post by:
I built a project using wxWidgets (2.8.3) using codeBlocks, with wxWidgets built MOLITHIC=1, SHARE=0, BUILD=debug and everything was fine and dandy (asside from the 25MB exe). I tried the same by building the Widgets library with BUILD=release (in a seperate directory), changed the path of the library and changed the link command line arguments, but suddenly I get some errors related to wxApp::OnExceptionInMainLoop and...
2
2781
by: Oneironaut | last post by:
Hello friends, I have an issue with a linker warning. It is the warning LNK4089. I am working in MSVC6.0 I investigated and this warning tells that the import of the library to which it makes reference is redundant, thus the linker ignores that library in order to make the code smaller. As it is expected, it only appears for release versions.
2
2424
by: Markus Dehmann | last post by:
What to do if an external library is header-files-only (but you have to use it), and you get lots of linker errors? You will necessarily get linker errors "multiple definition of ..." if you try to separate interface from implementation in your own code. The external-library symbols will first be defined in one .o file and then again in the next one that includes the same implementation-heavy header. Is there any way to avoid the...
0
8615
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9173
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9033
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8911
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8882
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6533
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4375
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
3057
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2009
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.