0

github からiOS 塗り絵のソース コードをダウンロードしました。

コンパイルしようとすると、次のエラーが表示されますが、その意味がわかりません。

    0 clang 0x0000000100c57bb2 main + 12932498
clang: error: unable to execute command: Segmentation fault: 11
clang: error: clang frontend command failed due to signal (use -v to see invocation)
Apple LLVM version 4.2 (clang-425.0.28) (based on LLVM 3.2svn)
Target: i386-apple-darwin11.4.2
Thread model: posix
clang: note: diagnostic msg: PLEASE submit a bug report to http://developer.apple.com/bugreporter/ and include the crash backtrace, preprocessed source, and associated run script.
clang: error: unable to execute command: Segmentation fault: 11
clang: note: diagnostic msg: Error generating preprocessed source(s).
Command /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang failed with exit code 254
4

2 に答える 2

1

指示に従いましたか?プライマリディレクトリのクローンを作成した後、ビルドしようとしましたが、多くの問題が発生し、指示を読み直して、これを見つけました:

INSTRUCTIONS

  Clone the coloring-book-ios repository, or alternatively, clone
  your fork of the coloring-book-ios repository, along with its
  submodules.

  For git version 1.6.5 or higher, run:

    git clone --recursive https://github.com/byronsanchez/coloring-book-ios.git
    cd coloring-book-ios
    Assets/Scripts/build.sh all

  For other versions of git, run:

    git clone https://github.com/byronsanchez/coloring-book-ios.git
    cd coloring-book-ios
    git submodule update --init
    Assets/Scripts/build.sh all

1.6.5以降に従うと(そして、そのファイルで行うように指示するbuild.sh警告を無視しました)、Xcode 4.6.3を使用してすべてが正常にビルドされました。

于 2013-08-28T13:11:36.477 に答える
0

これは、プロジェクトが Toast+UIView.h を参照していますが、ルート レベルにそのカテゴリが含まれていないためです。NIB、Raw、および Vendor は、メイン プロジェクトのサブモジュールです。

于 2013-08-28T13:12:21.717 に答える