Displaying 2 results from an estimated 2 matches for "msvcprt".
Did you mean:
msvcirt
2008 Aug 28
1
Building wxruby on windows with Visual C++ Express Edition
...es obj/AboutDialogInfo.obj ...<lots of objs and libs>...
c:/ruby
/lib/msvcrt-ruby18.lib /dll /out:lib/wxruby2.so
Microsoft (R) Incremental Linker Version 9.00.21022.08
Copyright (C) Microsoft Corporation. All rights reserved.
LINK : warning LNK4068: /MACHINE not specified; defaulting to X86
msvcprt.lib(MSVCP90.dll) : error LNK2005: "public: __thiscall
std::basic_string<
char,struct std::char_traits<char>,class std::allocator<char>
>::~basic_string<c
har,struct std::char_traits<char>,class std::allocator<char> >(void)"
(??1?$basi
c_string@DU?$char_...
2014 Feb 28
6
[LLVMdev] Unifying Windows Target Triples
...e same understanding, the canonical format for a triple is: arch-vendor-os-environment .
We have the following environment on Windows:
As far as I know, everyone conforms to the MS C ABI.
- There is the MS C++ ABI which is still being developed.
- There is the IA-64 ABI which is incompatible with msvcprt.
- There is the MinGW sub environment which supplies additional UNIX-y functions and uses IA-64 ABI for C++.
The Windows environment is uniformly (COFF)/PE.
As for the OS, Windows is slightly generic. Windows 9x, Windows NT, and Windows CE are all slightly different. However, given that Microso...