gpt4 book ai didi

gcc - 基于 MIPS 的代码源工具链的编译参数?

转载 作者:行者123 更新时间:2023-12-04 05:34:09 31 4
gpt4 key购买 nike

我在我的 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 modules



工具链信息:(在主机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)

我尝试了以下编译参数:
  • mips-linux-gnu-gcc -mips32 -muclibc -o factorial factorial.c

  • 当我在 MIPS 框上运行输出二进制文件时,它只是打印“无法加载库'libgcc_s.so.1'”。
  • mips-linux-gnu-gcc -muclibc -mips32 -static-libgcc -s -o factorial factorial.c

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

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

    最佳答案

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

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

    编辑:通用问题解决方案

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

  • 内核头文件
  • 工具链
  • 文件系统

  • 这是它们的关系

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

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

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

    所以一般来说,如果你的文件系统中没有文件而试图执行它应该来自某些 sdk 或你的工具链。
    如果您在文件系统中有它,那么您可以指示您的工具链从那里使用它。

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

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

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

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

    关于gcc - 基于 MIPS 的代码源工具链的编译参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12183433/

    31 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com