- 论坛徽章:
- 0
|
如何把c++文件编译成.dll文件?
o? FAQ? 赫赫,你去拿 FAQ 中的那个例子去编译一个 c++ 的程序试试,看看能不能用。
不要把什么都往 FAQ、精华 推。看清主题,他问的是 c++ 编译成动态库。
要把 c++ 的程序编译成动态库关键的地方在于要使用 extern "C" 来声明函数原型。
程序1 s.cpp
代码:
- extern "C"
- {
- int soTest(int a,int b) ;
- }
- int soTest(int a,int b)
- {
- return a+b;
- }
复制代码
编译:
- g++ -c s.cpp
- g++ -fPIC -shared -o s.so s.o
复制代码
程序2 t.cpp
代码:
- #include <stdio.h>;
- #include <stdlib.h>;
- #include <dlfcn.h>;
- int main(int argc, char **argv)
- {
- void *handle;
- int (*soTest)(int,int);
- char *error;
- handle = dlopen ("./s.so", RTLD_LAZY);
- if (!handle)
- {
- fprintf (stderr, "%s\n", dlerror());
- exit(1);
- }
- (void *)soTest = (int (*)(int,int))dlsym(handle, "soTest");
- if ((error = dlerror()) != NULL)
- {
- fprintf (stderr, "%s\n", error);
- exit(1);
- }
- printf ("%d\n", (*soTest)(2,3));
- dlclose(handle);
- return 0;
- }
复制代码
编译:
- g++ -c t.cpp
- g++ -rdynamic -s -o t t.o -ldl
复制代码
运行:
[/code] |
|