我创建模块为
module CGSL [system] { header "/usr/include/gsl/gsl_rng.h" link "gsl" export * }
但是,我无法构建我的程序,因为我收到了很多关于’cblas_dasum’的未定义引用的消息.事实上,正如GSL的文档所述
To link against the library you need to specify both the main library
and a supporting CBLAS library,which provides standard basic linear
algebra subroutines. A suitable CBLAS implementation is provided in
the library libgslcblas.a if your system does not provide one. The
following example shows how to link an application with the library,06001
我该怎么做才能链接-lgsl和-lgslcblas?
module CGSL [system] { header "/usr/include/gsl/gsl_rng.h" link "gsl" link "gslcblas" export * }
您可能还需要添加链接“m”,即使我不必在我的框中执行此操作(Ubuntu 14.04).
我没有在Swift文档中找到关于此的具体建议,并且必须做出有根据的猜测,但它有效. Swift on Linux正在进行中,而Package Manager仅适用于Swift 3.0开发快照,Swift 3.0是一个不稳定的,积极开发的最新版本的语言.这种常见情况没有得到很好的记录,这一事实可以让您了解技术的成熟度.
作为软件包管理器的替代方案,您可能需要考虑使用桥接标头,如此问题的答案中所述:
Compile C code and expose it to Swift under Linux.
无论您采用哪种方式,更大的挑战都是从Swift调用GSL API,因为API使用了许多非基本类型.要解决这个问题,可以考虑编写一个带有简化接口的C包装器,可以从Swift轻松调用.然后可以使用桥接头或系统模块调用包装器.