免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2007 | 回复: 2
打印 上一主题 下一主题

[C++] c调用c++编写动态连接库的发生问题. [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2004-09-23 10:15 |只看该作者 |倒序浏览
我想在一个c实现的文件中调用一个由c++生成的动态连接库,不知道怎样做才可以,希望大家帮忙.
我的环境是redhat8.0

下面是三个文件,其中hello.c是主程序,slib.cpp和test.cpp是生成动态连接库的代码.Makefile是编译程序
//==============hello.c===========
#include <stdio.h>;
#include <dlfcn.h>;

void *slib = 0;
void (*func) (char *);
const char *hError;
int
main (int argc, char *argv[])
{
  slib = dlopen ("./slib.so", RTLD_LAZY);
  hError = dlerror ();
  if (hError)
    {
      printf ("dlopen Error!\n";
      perror ("error\n";
      return 1;
    }
  func = dlsym (slib, "func";
  hError = dlerror ();
  if (hError)
    {
      dlclose (slib);
      printf ("dlsym Error!\n";
      return 1;
    }
  func ("How do you do?\n";
  dlclose (slib);
  hError = dlerror ();
  if (hError)
    {
      printf ("dlclose Error!\n";
      return 1;
    }
  return 0;
}

//===============slib.cpp============
#include <stdlib.h>;
#include <stdio.h>;

#include "test.h"

extern "C" int func(char* msg)
{
    printf("func be Executed!\n";

    printf(msg);
  savings a;
  a.hh();

    return 0;

}
//============test.h================

class savings{
public:
   void hh();
};

//============test.cpp==============
#include <stdlib.h>;
#include <stdio.h>;

#include "test.h"


void savings::hh(){
   printf("saving\n";
}
//==========Makefile===============

all:hello slib.so
hello:
        gcc -o hello hello.c -ldl
slib.so:slib.o
        g++ -shared -lc -o slib.so slib.o
slib.o:
        g++ -c -fpic slib.cpp test.cpp
clean:
        rm slib.so slib.o hello
//===========运行结果(期望)================
func be Executed!
How do you do?
saving
//===========运行结果(实际)================
func be Executed!
How do you do?
./hello: relocation error: ./slib.so: undefined symbol: hh__7savings

出现上面的错误,怎样修改上面的程序,才能避免这种错误?

论坛徽章:
0
2 [报告]
发表于 2004-09-23 12:23 |只看该作者

c调用c++编写动态连接库的发生问题.

你的Makefile有问题

试试这个啦:

all:hello slib.so

hello:
    gcc -o hello hello.c -ldl

slib.so: stdlib.o test.o
    g++ -shared -lc -o slib.so stdlib.o test.o

%.o: %.cpp
    g++ -c -fpic -o $@ $<

clean:
    rm slib.so *.o hello

论坛徽章:
0
3 [报告]
发表于 2004-09-23 12:37 |只看该作者

c调用c++编写动态连接库的发生问题.

谢谢.楼上的完全正确.
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP