我在WIN 7 machince上为mips32架构安装了codesourcery交叉编译工具链。我想首先为我的路由器编译一个简单的'factorial'二进制文件,它基于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'。
这里有什么问题?我应该输入什么编译器参数?请帮帮我。
答案 0 :(得分:3)
你在teh文件系统上有libgcc_s.so.1吗?如果没有,工具链将有一个要复制到文件系统的文件夹。去做。
如果这样做,请确保正确设置LD_LIBRARY_PATH。
编辑:通用问题解决方案
创建可执行文件时,链接到库。这些库还必须存在于运行可执行文件的环境中。因此,一般来说,在嵌入式系统中,必须匹配3件事
以下是它们的相关方式
您的内核头文件最终会以某种形式用作程序中的#include。因此,工具链使用的标头必须与实际运行的标头匹配,并且将出现在文件系统中。
工具链将包含要链接的库,以便可以创建可执行文件[想想libc和其他]。这些必须与您的文件系统
的运行时环境中的相同工具链必须创建一个可以内核的格式。可执行格式。
因此,一般情况下,如果您在尝试执行文件系统时没有文件,则应该来自某些sdk或您的工具链。 如果你在文件系统中有它,那么你可以指示你的工具链从那里使用它。
如果由于某种原因在文件系统中没有库,那么解决问题的一种方法是构建静态可执行文件。但你必须确定你知道自己在做什么。
编辑:您面临的具体问题 如果你的文件系统是只读的,那么你已经拥有了所有内容并且提供了一个sdk来进行开发。如果你没有这个,你仍然可以通过让你的工具链使用你的文件系统库[think -I,-L]来开发。
编辑2: 您的文件系统似乎是一个ucLibc文件系统。您的工具链似乎是针对libc构建的。你的不匹配。
现在你似乎有一个没有开发sdk的只读文件系统。所以我不确定以下内容是否有效。 您的工具链必须配置为仅使用文件系统中的文件并为ucLibc配置。如果路由器的人确保开发所需的所有文件都可以在rilesystem中使用,那就足够了。否则你需要他们的sdk。请参阅上面的编辑以获得解释。
答案 1 :(得分: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