我想从object-c程序中,调用svn的api,实现版本控制的功能。
我先在mac上费了好大力气,成功编译了subversion的源码。然后在xcode的build-settings里面的header path中加入了svn api的头文件路径。又在build-phases中将libsvn_client_1.a引入到了libraries里面。但编译的时候报错,代码如下:
头部引入
#import "svn_client.h"
- (void)tableViewSelectionDidChange:(NSNotification *)notification
{
NSLog(@"select one row!");
char* url = "http://***.***.com/svn/***/unity/****";
//list_repo2(url);
//listRepo(url);
// 测试下
svn_checksum_size(nil);
}
报错的信息如下 :
Undefined symbols for architecture x86_64:
"_svn_checksum_size", referenced from:
-[ViewController tableViewSelectionDidChange:] in ViewController.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
拜托大家帮忙看看~~
问题已经搞定了,请看我对@isteven的评论
你的静态库没有编译
x86_64
对应的二进制。如果自己编译的话,需要增加对x86_64
的支持,不支持也不要紧,只是模拟器上就不能跑了,只能真机运行。另外,真机上运行,如果不支持
amr64
也会报错。设置一下编译选项吧,现在为止全CPU支持的话需要(最后两个用于支持模拟器):
armv7
armv7s
arm64
x86
x86_64
。