2012-02-27 16 views
0

appleTV 2(ios)で実行するためのirssiの最新リリースをコンパイルしようとしていますirssiはすでにreposに存在していますが、perlサポートでビルドされていない古いバージョンです。デバイス上でコンパイルされたアプリケーションがあります。簡単なHelloWorldはhttp://imho.nu/Home/start-your-frappliance/appletv-mm-example/です。iOS(Apple TV)でirssiをコンパイルする

私は前のコンパイルに何かを設定しようとすると、それはエラーで失敗します。

checking whether the C compiler works... no 
configure: error: in `/private/var/download/irssi/irssi-0.8.15' 

config.logの読み取り:

gcc version 4.2.1 (Based on Apple Inc. build 5555) 
configure:3477: $? = 0 
configure:3466: gcc -V >&5 
gcc: '-V' option must have argument 
configure:3477: $? = 1 
configure:3466: gcc -qversion >&5 
gcc: no input files 
configure:3477: $? = 1 
configure:3497: checking whether the C compiler works 
configure:3519: gcc conftest.c >&5 
ld: library not found for -lSystem 
collect2: ld returned 1 exit status 
configure:3523: $? = 1 
configure:3561: result: no 
configure: failed program was: 
| /* confdefs.h */ 
| #define PACKAGE_NAME "irssi" 
| #define PACKAGE_TARNAME "irssi" 
| #define PACKAGE_VERSION "0.8.15" 
| #define PACKAGE_STRING "irssi 0.8.15" 
| #define PACKAGE_BUGREPORT "" 
| #define PACKAGE_URL "" 
| /* end confdefs.h. */ 
| 
| int 
| main() 
| { 
| 
| ; 
| return 0; 
| } 
configure:3566: error: in `/private/var/download/irssi/irssi-0.8.15': 
configure:3570: error: C compiler cannot create executables 
See `config.log' for more details. 

誰がどのような問題への上にいくつかの光を当てることができます多分?スクリプトが '-v'の代わりにgcc '-V'を渡してしまっていると思われます。

答えて

0

嬉しいです。私のimho.nuページが見つかりました。私は単純な方法をテストするだけで飛び込んできます。 apt-get install irssi。これはcydiaから直接irssi 0.8.12(20071006 0939)をインストールしました。

私がインストールさ:

wget http://apt.saurik.com/debs/libgcc_4.2-20080410-1-6_iphoneos-arm.deb 
dpkg -i libgcc_4.2-20080410-1-6_iphoneos-arm.deb 
apt-get install iphone-gcc ldid make 

を私はgcc -v(ない-V)を入力すると、それは私を与える:

AppleTV:/usr/bin root# gcc -v 
Using built-in specs. 
Target: arm-apple-darwin9 
Configured with: ../llvm-gcc-4.2/configure --build=x86_64-unknown-linux-gnu --host=arm-apple-darwin9 --enable-static=no --enable-shared=yes --prefix=/usr --localstatedir=/var/cache/iphone-gcc --enable-languages=c,c++,objc,obj-c++ --enable-wchar_t=no --with-gxx-include-dir=/usr/include/c++/4.0.0 
Thread model: posix 
gcc version 4.2.1 (Based on Apple Inc. build 5555) 
AppleTV:/usr/bin root# 

参照:いずれの場合でhttp://imho.nu/iMHo/scripting-with-irssi/

+0

、私見のためのあなたの書き込みアップを。 nuは良いですが、perlモジュールがirssiのそのバージョンにロードされているとは思いません。/LOADの出力にはperlが含まれていますか?私はしません。また、そのバージョンは08.12最新です08.15 –

+0

また連絡先情報を追加するか、またはimho.nuにコメントを投稿してください –

関連する問題