Re: ld terminated with signal 11



vsouders@xxxxxxxxxxxxxx wrote:
>
> I'm working on setting up an ARM toolchain under Linux. I've installed
> binutils 2.10, arm-gcc 2.95.2 and glibc 2.1.3. When I try to compile
> the simple test code shown below, the linker terminates with a signal
> 11. If I remove the iostream include and the cout statement, the
> application compiles and links without errors. Does this mean the
> linker is attempting to link against an incorrect lib version? I've
> set up a similar tool chain on Windows using cygwin and didn't have
> this issue. Any help would be much appreciated.
>
> #include <iostream>
>
> using namespace std;
>
> int main()
> {
> cout << "Hello ARM" << endl;
> return 0;
> }

Nothing written in C++ is simple. The libraries are monstrous, and
change continuously. Stick to C.

--
Chuck F (cbfalconer@xxxxxxxxx) (cbfalconer@xxxxxxxxxxxxxxxx)
Available for consulting/temporary embedded and systems.
<http://cbfalconer.home.att.net> USE worldnet address!


.