Tagged Questions
0
votes
1answer
114 views
GCC fails to build at linking libquadmath
I'm trying to build GCC (GCC 4.8, at revision 195144), but I get the following error:
libtool: link: ranlib .libs/libquadmath.a
libtool: link: ( cd ".libs" && rm -f "libquadmath.la" ...
2
votes
0answers
350 views
Compile parameters for MIPS based codesourcery toolchain?
I installed codesourcery cross compile toolchain for mips32 architecture on my WIN 7 machince. I want to first compile a simple 'factorial' binary for my router which is based on MIPS32. From little ...
2
votes
0answers
228 views
Error cross compiling linux kernel using buildroot
I am trying to build a kernel bt in cross compiling the kernel when I ran following command
make CROSS_COMPILE=i686-linux- ARCH=x86
I got the following error:
UCLIB_EXTRA_CFLAGS="" \
...
0
votes
0answers
228 views
How to set library searching path using environment variable in compile-time
-I option set header file searching path for gcc/g++, and CPLUS_INCLUDE_PATH/CPATH append the searching path list.
Then what about libs? It seems that LD_LIBRARY_PATH is just a path list for ...