#ifndef __MYFUNC_H
#define __MYFUNC_H
#include <stdio.h>
#include <stdlib.h>
void say_hello();
int cal_sum(int x, int y);
#endif
#include "myfunc.hpp"
void say_hello()
{
printf("hello world\n");
}
int cal_sum(int x, int y)
{
return x + y;
}
源代码生成.o文件
制作动态库
写测试程序
#include "myfunc.hpp"
int main(int argc, char const *argv[])
{
int result = 0;
say_hello();
result = cal_sum(2, 3);
printf("%d\n", result);
return 0;
}
~
使用动态库编译程序
运行结果
报错了,因为在执行程序的时候,系统不知道动态库的位置
在配置文件中写入动态库的绝对路径
再次执行
成功运行了!