export LD_LIBRARY_PATH=./
g++ -o libhell.so --share -fPIC hell.c hell.h // 生成.lib文件
g++ -o hao -L. -lhell haowangli.c
/ 这个是 hell.h
#include <stdio.h>
void say();
/
/ 这个是 hell.c
#include <stdio.h>
#include "hell.h"
void say()
{
printf("hello world ");
}
/
/ 这个是 haowangli.c
#include <stdio.h>
#include <iostream>
#include "hell.h"
using namespace std;
void say()
{
printf("hello world ");
}
/