Re: C++ iostream broken on armv7

2014-06-21 Thread patrick keshishian
On Fri, Jun 20, 2014 at 08:19:34PM +0200, Matthieu Herrb wrote: > > On Jun 18, 2014, at 1:46 PM, Matthieu Herrb wrote: > > > Hi > > > > > > the simple c++ program below dumps core on armv7 (an iMX6 Sabre lite > > > board in my case): > > > > > > #include > > > > > > using namespace std; > > >

Re: C++ iostream broken on armv7

2014-06-20 Thread Matthieu Herrb
On Fri, Jun 20, 2014 at 11:09:59AM -0600, Douglas Beattie wrote: > Looking closely at the formal parameters, > it appears that 'argc' is missing the comma > delimiter, and is using ç (c-cedilla) instead of > the letter 'c'. That's just a cut'n'paste issue with the input method I use to compose my

Re: C++ iostream broken on armv7

2014-06-20 Thread Douglas Beattie
Looking closely at the formal parameters, it appears that 'argc' is missing the comma delimiter, and is using ç (c-cedilla) instead of the letter 'c'. -- Douglas Beattie On Jun 18, 2014, at 1:46 PM, Matthieu Herrb wrote: > Hi > > the simple c++ program below dumps core on armv7 (an iMX6 Sabre l

Re: C++ iostream broken on armv7

2014-06-18 Thread Guenther Niess
On 06/18/14 21:46, Matthieu Herrb wrote: > Hi > > the simple c++ program below dumps core on armv7 (an iMX6 Sabre lite > board in my case): > ... The same on my pandaboard for the current cvs tree from June, 18 08:27. Guenther

C++ iostream broken on armv7

2014-06-18 Thread Matthieu Herrb
Hi the simple c++ program below dumps core on armv7 (an iMX6 Sabre lite board in my case): #include using namespace std; int main(int argç char *argv[]) { cout « "Hello World!" « endl ; return 0; } sabre% g++ -g -Wall hello.cc sabre% gdb ./a.out GNU gdb 6.3 Copyright 2004 Free Softwar