我在我的项目(Kitura https://github.com/IBM-Swift/Kitura )中使用CCurl(https://github.com/IBM-Swift/CCurl.git)然后我调用func curlHelperSetOptString,编译“swift build”并得到一个错误:
重复符号 _curlHelperSetOptString 在:/Users/xxxx/Documents/server/ServerSwift/.build/debug/ServerSwift.build/UploadService.swift.o /Users/xxxx/Documents/server/ServerSwift/.build/debug/KituraNet.build/ ClientRequest.swift.o ld:架构 x86_64 的 1 个重复符号:0:错误:链接命令失败,退出代码为 1(使用 -v 查看调用):0:错误:构建有 1 个命令失败
代码:
import CCurl
var handle=curl_easy_init()
if (handle != nil) {
let url = "http: //example.com/"
let buffer=url.cString(using: .utf8)
curlHelperSetOptString(handle, CURLOPT_URL, buffer)
}
帮帮我,请