自己生成非官方iPhone toolchain的头文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自己生成非官方iPhone toolchain的头文件相关的知识,希望对你有一定的参考价值。

如果你已经搭建好非官方iPhone toolchain开发包,如果缺少某些头文件,可以用以下方法自己生成。

 

首先下载class-dump:

http://www.codethecode.com/projects/class-dump/

 

接着建立一个headers的目录。

然后使用以下代码:

 

  1. #!/usr/bin/perl
  2.  
  3. use strict;
  4.  
  5. my $directory = "/usr/local/share/iphone-filesystem/System/Library/Frameworks/";
  6. my $command = "/usr/bin/class-dump";
  7.  
  8. opendir(DIR, $directory) || die("Cannot open directory " . $directory . "!\n");
  9. my @dirContents = readdir(DIR);
  10. closedir(DIR);
  11.  
  12. foreach my $child (@dirContents)
  13. {
  14.         if(!(($child eq ".") || ($child eq "..")))
  15.     {
  16.                 my @fileNameParts = split(/\./, $child);
  17.                 my $fileToDump = $directory . $child . "/" . @fileNameParts[0];
  18.                 my $outputFile = "headers/" . @fileNameParts[0];
  19.                 my @args = ($command, "-H""-A""-s""-S""-o"$outputFile, $fileToDump);
  20.                 system(@args) == 0 or die "system @args failed: $?"
  21.     }
  22. }

将执行权限修改为755,执行即可在headers目录中找到所有的头文件了。

然后将需要使用的头文件中的

#import "NSObject.h"

替换成

#import

把需要的头文件复制到/usr/local/arm-apple-darwin/include中即可使用。

以上是关于自己生成非官方iPhone toolchain的头文件的主要内容,如果未能解决你的问题,请参考以下文章

cmake利用toolchain.cmake生成makefile之后,make生成静态库失败问题

生成ARM汇编

海思平台配置toolchain.cmake

NDK交叉编译之自定义工具链

iPhone上的图形生成[关闭]

cmake交叉编译参数toolchain