我正在尝试构建以下代码:
#include <stdio.h>
#include "defs.h"
struct polynome saisie(void);
struct polynome mult (struct polynome, struct polynome);
/* ************************************************
produit
Produit de 2 polynomes saisis au sein de la fonction
entree : -
sortie : -
**************************************************** */
void produit(void) {
struct polynome P1,P2,Q;
int i;
printf("Premier polynome : \n");
P1=saisie();
printf("Second polynome : \n");
P2=saisie();
Q=mult(P1,P2);
for(i=Q.degre; i>=0; i--)
printf("coefficient de X a la puissance %d : %d\n",i, Q.coef[i]);
printf("\n");
}
使用此命令:
gcc -shared -o lib/libop.so lib/*.o
我总是得到这个错误:
Undefined symbols for architecture x86_64:
"_saisie", referenced from:
_produit in produit.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
我不知道它是否对你有帮助,但有我的 gcc -v 输出:
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk/usr/include/c++/4.2.1
Apple LLVM version 5.0 (clang-500.2.76) (based on LLVM 3.3svn)
Target: x86_64-apple-darwin13.0.0
Thread model: posix
编辑:这是包含的标题
#define N 10
struct polynome {
int degre;
int coef[N];
};
另外,我会说我的一些同事在 linux 机器上成功地将这段代码编译成一个共享库。也许问题出在我的配置中?但我看不到在哪里