2

我在我的 WIN 7 机器上安装了用于 mips32 架构的 codesourcery 交叉编译工具链。我想首先为我的路由器编译一个基于 MIPS32 的简单“阶乘”二进制文件。从网上的小搜索,我发现它是基于 MIPS32 big-endian 的。

#cat /proc/cpuinfo
system type             : 96338W2
processor               : 0
cpu model               : BCM6338 V1.0
BogoMIPS                : 239.20
wait instruction        : no
microsecond timers      : yes
tlb_entries             : 32
extra interrupt vector  : yes
hardware watchpoint     : no
unaligned access        : 1269919
VCED exceptions         : not available
VCEI exceptions         : not available

# cat /proc/version
Linux version 2.6.8.1 (root@WangHaiTao) (gcc version 3.4.2) #1 Wed Sep 2 10:13:53 CST 2009

路由器的 LIB 目录包含:

ld-uClibc.so.0 libc.so.0 libcrypt.so.0 libcrypto.so.0.9.7 libdl.so.0 libm.so.0 libnvram.so libpsi.so libpsixml.so libresolv.so.0 libssl。 so.0.9.7 libutil.so.0 libwlbcmcrypto.so libwlbcmshared.so libwlctl.so 模块

工具链信息:(在主机 WIN 7 系统上)

C:\code>mips-linux-gnu-gcc -v
Using built-in specs.
COLLECT_GCC=mips-linux-gnu-gcc
COLLECT_LTO_WRAPPER=f:/program files/codesourcery/sourcery_codebench_lite_for_mi
ps_gnu_linux/bin/../libexec/gcc/mips-linux-gnu/4.6.3/lto-wrapper.exe
Target: mips-linux-gnu
Configured with: /scratch/cmoore/2012.03-63-linux-lite/src/gcc-4.6-2012.03/confi
gure --build=i686-pc-linux-gnu --host=i686-mingw32 --target=mips-linux-gnu --ena
ble-threads --disable-libmudflap --disable-libssp --disable-libstdcxx-pch --with
-arch-32=mips32r2 --with-arch-64=mips64r2 --with-float=hard --with-mips-plt --en
able-extra-sgxxlite-multilibs --with-gnu-as --with-gnu-ld --with-specs='%{save-t
emps: -fverbose-asm} -D__CS_SOURCERYGXX_MAJ__=2012 -D__CS_SOURCERYGXX_MIN__=3 -D
__CS_SOURCERYGXX_REV__=63 %{O2:%{!fno-remove-local-statics: -fremove-local-stati
cs}} %{O*:%{O|O0|O1|O2|Os:;:%{!fno-remove-local-statics: -fremove-local-statics}
}}' --enable-languages=c,c++ --enable-shared --enable-lto --enable-symvers=gnu -
-enable-__cxa_atexit --with-pkgversion='Sourcery CodeBench Lite 2012.03-63' --wi
th-bugurl=https://support.codesourcery.com/GNUToolchain/ --disable-nls --prefix=
/opt/codesourcery --with-sysroot=/opt/codesourcery/mips-linux-gnu/libc --with-bu
ild-sysroot=/scratch/cmoore/2012.03-63-linux-lite/install/host-i686-mingw32/mips
-linux-gnu/libc --with-libiconv-prefix=/scratch/cmoore/2012.03-63-linux-lite/obj
/host-libs-2012.03-63-mips-linux-gnu-i686-mingw32/usr --with-gmp=/scratch/cmoore
/2012.03-63-linux-lite/obj/host-libs-2012.03-63-mips-linux-gnu-i686-mingw32/usr
--with-mpfr=/scratch/cmoore/2012.03-63-linux-lite/obj/host-libs-2012.03-63-mips-
linux-gnu-i686-mingw32/usr --with-mpc=/scratch/cmoore/2012.03-63-linux-lite/obj/
host-libs-2012.03-63-mips-linux-gnu-i686-mingw32/usr --with-ppl=/scratch/cmoore/
2012.03-63-linux-lite/obj/host-libs-2012.03-63-mips-linux-gnu-i686-mingw32/usr -
-with-host-libstdcxx='-static-libgcc -Wl,-Bstatic,-lstdc++,-Bdynamic -lm' --with
-cloog=/scratch/cmoore/2012.03-63-linux-lite/obj/host-libs-2012.03-63-mips-linux
-gnu-i686-mingw32/usr --with-libelf=/scratch/cmoore/2012.03-63-linux-lite/obj/ho
st-libs-2012.03-63-mips-linux-gnu-i686-mingw32/usr --disable-libgomp --enable-po
ison-system-directories --with-build-time-tools=/scratch/cmoore/2012.03-63-linux
-lite/obj/tools-i686-pc-linux-gnu-2012.03-63-mips-linux-gnu-i686-mingw32/mips-li
nux-gnu/bin --with-build-time-tools=/scratch/cmoore/2012.03-63-linux-lite/obj/to
ols-i686-pc-linux-gnu-2012.03-63-mips-linux-gnu-i686-mingw32/mips-linux-gnu/bin
Thread model: posix
gcc version 4.6.3 (Sourcery CodeBench Lite 2012.03-63)



我尝试了以下编译参数:

  1. mips-linux-gnu-gcc -mips32 -muclibc -o factorial factorial.c

当我在 MIPS 机器上运行输出二进制文件时,它只打印了“无法加载库 'libgcc_s.so.1'”。

  1. mips-linux-gnu-gcc -muclibc -mips32 -static-libgcc -s -o factorial factorial.c

当我运行它的输出时,它会打印“sigsegv”。

这里有什么问题?我应该输入什么编译器参数?请帮我。

4

2 回答 2

3

你的文件系统上有 libgcc_s.so.1 吗?如果没有,工具链将有一个文件夹复制到文件系统上。去做。

如果这样做,请确保正确设置了 LD_LIBRARY_PATH。

编辑:一般问题解决

创建可执行文件时,您链接到库。这些库也必须存在于您运行可执行文件的环境中。因此,通常在嵌入式系统中,三件事必须匹配

  1. 内核头文件
  2. 工具链
  3. 文件系统

这是它们的关系

您的内核头文件最终以某种形式在您的程序中用作#include。因此,工具链使用的标头必须与实际运行的标头匹配,并且将出现在文件系统中。

工具链将包含要链接的库,以便可以创建可执行文件 [想想 libc 和其他]。这些在您的文件系统的运行时环境中必须相同

工具链必须创建适合您的内核的格式。可执行格式。

因此,一般来说,如果您在尝试执行时文件系统中没有文件,则它应该来自某个 sdk 或您的工具链。如果您在文件系统中有它,那么您可以指示您的工具链从那里使用它。

如果由于某种原因在文件系统中没有库,解决该问题的一种方法是构建静态可执行文件。但是你必须确定你知道你在做什么。

编辑:您面临的具体问题如果您的文件系统是只读的,那么您已经拥有了所有内容,并且提供了一个 sdk 来开发。如果你没有,你仍然可以通过让你的工具链使用文件系统中的库来进行开发 [想想 -I,-L]。

编辑 2:您的文件系统似乎是一个 ucLibc 文件系统。您的工具链似乎是针对 libc 构建的。有你的不匹配。

现在您似乎有一个没有开发 sdk 的只读文件系统。所以我不确定以下是否可行。您的工具链必须配置为仅使用文件系统中的文件并针对 ucLibc 进行配置。如果路由器人员确保开发所需的所有文件都在 rilesystem 中可用,那么它就足够了。否则你需要他们的sdk。请参阅上面的编辑以获取解释。

于 2012-08-29T21:40:47.373 回答
0

我已经成功编译了这个

#include <iostream>
using namespace std;

int main() {
  cout << "!!!Hello World!!!" << endl; // prints !!!Hello World!!!
  return 0;
}

mips-linux-gnu-g++ -muclibc -mips32  main.cpp -o main
于 2013-03-01T18:20:29.137 回答