为iPhone编译外部C ++库(Octave)(缺少Fortran编译器?)

时间:2009-09-09 23:30:16

标签: iphone cross-compiling octave

我的一位朋友问我是否可以将Octave项目移植到iPhone上。我以前没有为iPhone项目编译外部包,所以我下载了源代码,然后使用了几个不同网站(onetwo)上的一些脚本来尝试建立图书馆。但是,当我尝试这些脚本中的任何一个(几乎相同)时,它们最终会在configure阶段死亡,并出现以下错误输出:

[...snip checks...]
checking whether we are using the GNU Fortran 77 compiler... no
checking whether  accepts -g... no
checking how to get verbose linking output from ... configure: WARNING: compilation failed

checking for Fortran 77 libraries of ... rm: conftest.dSYM: is a directory

checking for dummy main to link with Fortran 77 libraries... rm: conftest.dSYM: is a directory
none
checking for Fortran 77 name-mangling scheme... configure: error: cannot compile a simple Fortran program
See `config.log' for more details.

问题是iPhone SDK / Xcode不包含Fortran交叉编译器,还是我做错了什么?

1 个答案:

答案 0 :(得分:1)

iPhone SDK不包含FORTRAN编译器。 Apple的最后一个FORTRAN产品是针对苹果公司的[虽然第三方和/或开源编译器已经存在于Apple已经建立的大多数系统中。

您可以配置和构建gfortran,但它将是PITA。您可能需要将Apple在here下找到的自定义GCC 4.2分支的更改与用于为Darwin构建它的配方合并,例如this

您可以尝试f2c,因为Octave项目建议。