Tags : XCode
Entries in this Tags : 1logs Showing : 1 - 1 / 1
Entries in this Tags : 1logs Showing : 1 - 1 / 1
November 2024 | ||||||
---|---|---|---|---|---|---|
S | M | T | W | T | F | S |
Oct | Dec | ||||||
* | * | * | * | * | 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
いきなり違う話題なんですが、備忘録としてメモ。
PowerPC 上で Universal Binary なアプリを作ろうとマニュルを参考にフラグを設定したんですが、ビルドエラーに。その時から、新規に作成したプロジェクトも全てエラーでビルド出来ない状態に。
付属のスクリプトファイルでアンインストール/再起動/再インストールするも状況は改善せず、
メーリングリストのアーカイブ に同じ症状が出ていたので、対応。
/usr/libexec/gcc/powerpc-apple-darwin8/4.0.1/ (インテルに対応する場合、 /usr/libexec/gcc/i686-apple-darwin8/4.0.1/ にも)以下に、/usr/bin/as と /usr/bin/ld のシンボリックリンクを作成すると改善するみたいです。
sudo ln -s /usr/libexec/gcc/powerpc-apple-darwin8/4.0.1/as /usr/bin/as
sudo ln -s /usr/libexec/gcc/powerpc-apple-darwin8/4.0.1/ld /usr/bin/ld
sudo ln -s /usr/libexec/gcc/i686-apple-darwin8/4.0.1/as /usr/bin/as
sudo ln -s /usr/libexec/gcc/i686-apple-darwin8/4.0.1/ld /usr/bin/ld
しかし、原因不明なのでなんとも気持ち悪い感じです。まぁいろいろいじったし、そろそろクリーンインストールする時期なんでしょうね。