gcc生成dll linux,gcc编译dll和调用dll

本文详细介绍了如何使用GCC在Linux环境下生成动态链接库(DLL)并进行调用。提供了两种方法,包括创建print.dll及test.c的调用,以及通过DllMain函数实现动态加载和卸载的Foo.dll。编译动态库的命令如`gcc -shared print.c -o print.dll`,调用库的命令如`gcc test.c print.dll -o test`。
摘要由CSDN通过智能技术生成

方法一:

共有三个文件:print.h,print.c,test.c

***************************************************************

print.h: 文件内容

#ifndef PRINT_H

#define PRINT_H

#ifdef __cplusplus

extern " C " {#endif //打印点东西

void Print(int iNum);#ifdef __cplusplus

}#endif

#endif

***************************************************************

***************************************************************

print.c: 文件内容

#include #include "print.h"

void Print(int iNum)

{

switch(iNum)

{

case 1:

printf("hello,this is 1/n");

break;

case 2:

printf("ok ,2 now/n");

break;

default:

printf("hihi,default now /n");

break;

}

getch();

r

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值