English 中文(简体)
增量校准——连接时间与连接选择之间的差别
原标题:Boost libs building - difference between runtime-link and link options

I m试图与MSVC一道在Windows 7上建立图书馆(VS 2010)。

我已经走过在班子指挥线选择中的<>长期连接和的选项。 我想知道如何使用这些工具,它们之间的具体区别是什么。

我已经利用这一指挥线建造了Boost Regex图书馆。

www.un.org/Depts/DGACM/index_french.htm 备选案文:

它制作了这些档案:

(1)boost_regex-vc100-mt-1_47.dll (Import Library:boost_regex-vc100-mt-1_47.lib)

2)libboost_regex-vc100-mt-1_47.lib

3)libboost_regex-vc100-mt-s-1_47.lib

4)libboost_regex-vc100-s-1_47.lib

www.un.org/Depts/DGACM/index_spanish.htm 2-3.lib 文档有何区别? 两者都是静态的校准。 我已经走过了“博斯特”号,但并没有就此找到很多解释。

TIA

最佳回答

http://www.un.org/Depts/DGACM/index_french.htm 也就是说,它符合VC的<代码>。 运行时间是指使用贵编现有标准图书馆所需的部件。

您在某个时候可能看到动态链接文档:MSVCRTXX.DL(Cprtime)和MSVCPXX.DL(C++标准图书馆),MFCXX.DL(MFC核心班)。 静态对口单位是LBC和LiCBP(见,用于图书馆表)

当你重新使用客户代码时,你在建设“ Boo”时使用的操作时间联系办法应当与选择相匹配。 否则,由于在联系时间或管理你的方案时错配时间,你就会错失。

在建设你利用动态链接运行时间的方案时,你需要列入。 VC 在部署你的申请时可重新分配

link refers to how the boost library your building will be linked to, either as a static or dynamic link library.

问题回答

暂无回答




相关问题
Undefined reference

I m getting this linker error. I know a way around it, but it s bugging me because another part of the project s linking fine and it s designed almost identically. First, I have namespace LCD. Then I ...

C++ Equivalent of Tidy

Is there an equivalent to tidy for HTML code for C++? I have searched on the internet, but I find nothing but C++ wrappers for tidy, etc... I think the keyword tidy is what has me hung up. I am ...

Template Classes in C++ ... a required skill set?

I m new to C++ and am wondering how much time I should invest in learning how to implement template classes. Are they widely used in industry, or is this something I should move through quickly?

Print possible strings created from a Number

Given a 10 digit Telephone Number, we have to print all possible strings created from that. The mapping of the numbers is the one as exactly on a phone s keypad. i.e. for 1,0-> No Letter for 2->...

typedef ing STL wstring

Why is it when i do the following i get errors when relating to with wchar_t? namespace Foo { typedef std::wstring String; } Now i declare all my strings as Foo::String through out the program, ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

Window iconification status via Xlib

Is it possible to check with the means of pure X11/Xlib only whether the given window is iconified/minimized, and, if it is, how?

热门标签