opkgを使用してMIPS CPUアーキテクチャにコンパイルツールをインストールする方法

opkgを使用してMIPS CPUアーキテクチャにコンパイルツールをインストールする方法

私はセットトップボックス(デジタル受信機)を購入しました。Vu+ソロ2)Linuxを実行していて、Linux上でいくつかのCソフトウェアをコンパイルしようとしています。 OPKGをパッケージマネージャとして使用します。私は処刑した

opkg update

そして:

root@vusolo2:~# opkg install gcc
Unknown package 'gcc'.
Collected errors:
opkg_install_cmd: Cannot install package gcc.
root@vusolo2:~#

必要なリポジトリがないからだと思います。のファイルは、受信者が実行しているLinuxイメージ作成者が所有するファイルのみを/etc/opkg/指します(feeds/repositoriesブラックホール)。

私が理解したように、ストレージはCPUアーキテクチャと一致する必要があります。出力は次のとおりです/proc/cpuinfo

root@vusolo2:~# cat /proc/cpuinfo
system type : BCM7346B2 STB platform
machine : Unknown
processor : 0
cpu model : Broadcom BMIPS5000 V1.1 FPU V0.1
BogoMIPS : 864.25 cpu MHz : 1305.007
wait instruction : yes
microsecond timers : yes
tlb_entries : 64
extra interrupt vector : yes
hardware watchpoint : no
isa : mips1 mips2 mips32r1
ASEs implemented :
shadow register sets : 1
kscratch registers : 0
core : 0
VCED exceptions : not available
VCEI exceptions : not available
processor : 1
cpu model : Broadcom BMIPS5000 V1.1 FPU V0.1
BogoMIPS : 655.36
cpu MHz : 1305.007
wait instruction : yes
microsecond timers : yes
tlb_entries : 64
extra interrupt vector : yes
hardware watchpoint : no
isa : mips1 mips2 mips32r1
ASEs implemented :
shadow register sets : 1
kscratch registers : 0
core : 0
VCED exceptions : not available
VCEI exceptions : not available

次のパッケージを入手するにはどのリポジトリを使用する必要がありますか?

gcc
gcc-symlinks
make-dev
binutils-dev
libgcc-dev

ベストアンサー1

私は今日このような立場にあり、答えは簡単に見えます。あなたは望んでいません。ちょうどクロスコンパイルしてください。

これEntware-ng opkg ストレージプロジェクトこの目的のために、指示と一緒に良いツールバーが用意されています。ここ。彼らはただサポートネイティブコンパイルARM | x86 *で、次のように結論を下しました。

mipselリポジトリにgccはありません。

また見なさい:https://github.com/Entware-ng/Entware-ng/issues/138

おすすめ記事