gpt4 book ai didi

从 C++/CLI Visual studio 2010 调用使用 VS 2005 编译的 native C - 无法打开 .lib 文件...

转载 作者:行者123 更新时间:2023-11-30 16:00:48 25 4
gpt4 key购买 nike

您好,我想从 C dll 到 C++/CLI 调用函数。 C 函数被声明为 extern。我按照本教程链接了 dll:http://social.msdn.microsoft.com/Forums/en/Vsexpressvc/thread/84deabaa-ae82-47cc-aac0-592f5a8dfa22然后在我的 C++/CLI dll 中我有以下内容:

    // testWrapper.h
#pragma once
using namespace System;
namespace testWrapper {
extern "C" int GtoCalcImpliedVolatility2(
double premium,
int optionType,
double underPrice,
double strike,
double yearsToExpiry,
double yearsToPayment,
double volGuess,
double discountRate,
double dividendRate,
double growthRate,
double *impliedVol);
public ref class MyNamesSplitterClass
{
private:
public:


int TestSomething()
{
double vol;
int _status = GtoCalcImpliedVolatility2(
0.098328, //premium
'P', //optionType
0.950000, //underPrice
1.050000, //strike
0.900000, //yearsToExpiry
0.95, //yearsToPayment
0.01, //volGuess
0.02, //discountRate
0.03, //dividendRate
0.04,//growthRate
&vol);
}
};
}

我知道我应该只在 .h 中给出签名,然后在 .cpp 中编写函数代码,但为了测试,我将其编写在同一个地方。这些是我得到的错误:

Error   3   error LNK1120: 2 unresolved externals   (etc...)

Error 1 error LNK2028: unresolved token (0A000006) "int __cdecl testWrapper::GtoCalcImpliedVolatility2(double,int,double,double,double,double,double,double,double,double,double *)" (?GtoCalcImpliedVolatility2@testWrapper@@$$FYAHNHNNNNNNNNPAN@Z) referenced in function "public: int __clrcall testWrapper::MyNamesSplitterClass::TestSomething(void)" (?TestSomething@MyNamesSplitterClass@testWrapper@@$$FQ$AAMHXZ)

Error 2 error LNK2019: unresolved external symbol "int __cdecl testWrapper::GtoCalcImpliedVolatility2(double,int,double,double,double,double,double,double,double,double,double *)" (?GtoCalcImpliedVolatility2@testWrapper@@$$FYAHNHNNNNNNNNPAN@Z) referenced in function "public: int __clrcall testWrapper::MyNamesSplitterClass::TestSomething(void)" (?TestSomething@MyNamesSplitterClass@testWrapper@@$$FQ$AAMHXZ)

我尝试查找它们,但除了由于链接错误而导致的事实之外,找不到有关它们的太多信息...

更新:项目组织...

因此,对于我的 c++/cli 项目,我编写了一个 .hpp,如下所示,其中包含我的 880 多个 header :

extern "C" {

#include "accrued.h"
...
#include "gtobf.h" // this contains GtoCalcImpliedVolatility2
...
#include "../includep/zcsmthp.h"

}

以下是gtobf.h:

    #ifndef ALIB_GTOBF_H
#define ALIB_GTOBF_H

#include "cgeneral.h"
#include "optprop.h" /* TOptionProperties */
#include "cmemory.h" /* FREE macro */
#include "rtnewton.h" /* TObjectFunc */


#ifdef __cplusplus
extern "C"
{
#endif

/*f
* Calculates volatility implied by the price of a given option.
*/
//#define GTO_EXPORT(type) __declspec(dllexport) type
GTO_EXPORT(int ) GtoCalcImpliedVolatility2(
double premium, /* (I) Option premium */
int optionType, /* (I) GtoOPTION_PUT/GtoOPTION_CALL */
double underPrice, /* (I) Underlyer price */
double strike, /* (I) Strike/exercise price */
double yearsToExpiry, /* (I) Years to option's expiry */
double yearsToPayment, /* (I) Years till option pays off */
double volGuess, /* (I) Volatility guess (.06 for 6%) */
double discountRate, /* (I) Discount rate (ann. compound) */
double dividendRate, /* (I) Dividend rate (ann. compound) */
double growthRate, /* (I) Growth rate (ann. compound) */
double *impliedVol); /* (O) Implied Volatility */

//...other functions

#ifdef __cplusplus
}
#endif

#endif /* ALIB_GTOBF_H */

然后在我的 c++/cli 包装器中,我包含了 all.hpp,其中包含所有其他 header ...尽管如此,我仍然收到错误。

我确信该函数已导出,因为我已经使用 P/Invoke 从 C# 中使用了 dll...

!!!!!!!!!!!!!!!编辑:

我没有指出该库的正确路径...现在我已经解决了这个问题,并且收到 LNK1104 错误,指出它无法打开我的 .lib

最佳答案

GtoCalcImpliedVolatility2 C 函数在哪里实现?如果位于单独的 .c 或 .cpp 文件中,请将此文件添加到项目中。如果放在Dll中,则将.lib文件添加到项目链接器依赖项中。

一些细节:打开项目 - 属性 - 配置属性 - 链接器。所有 .lib 文件名都添加到附加依赖项列表中。通过提供完整路径或将 .lib 目录添加到链接器搜索列表,确保可以找到 .lib 文件。

编辑。链接器 - 常规 - 附加库目录。在这里您可以添加当前项目的.lib文件路径。工具 - 选项 - 项目和解决方案 - VC++ 目录 - 库文件中还有全局目录列表。

关于从 C++/CLI Visual studio 2010 调用使用 VS 2005 编译的 native C - 无法打开 .lib 文件...,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7428789/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com