Re: [lfs-support] LFS 9.1 GMP-6.2.0 test suite

2020-06-22 Thread Ken Moffat
On Mon, Jun 22, 2020 at 06:47:40PM -0500, Bruce Dubbs wrote:
> On 6/22/20 6:29 PM, Alexey Orishko wrote:
> > Hi all,
> > 
> > While building LFS 9.1 I got a problem with the description of GMP-6.2.0
> > test suite results in ch.6.19. In both LFS books it is said that there
> > are 190 tests, but I got 197 "PASS"es. It does not prevent me from going
> > forwards, but it might be worth fixing in book description.
> 
> I don't remember 9.1, but we have 197 in the current development book.
> 
>   -- Bruce
> 
I'll add an Erratum to each book when I get a round tuit.

ĸen
-- 
   He died at the console, of hunger and thirst.
   Next day he was buried, face-down, nine-edge first.
  - the perfect programmer
-- 
http://lists.linuxfromscratch.org/listinfo/lfs-support
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Do not top post on this list.

A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing in e-mail?

http://en.wikipedia.org/wiki/Posting_style


Re: [lfs-support] LFS 9.1 GMP-6.2.0 test suite

2020-06-22 Thread Bruce Dubbs

On 6/22/20 6:29 PM, Alexey Orishko wrote:

Hi all,

While building LFS 9.1 I got a problem with the description of GMP-6.2.0 
test suite results in ch.6.19. In both LFS books it is said that there 
are 190 tests, but I got 197 "PASS"es. It does not prevent me from going 
forwards, but it might be worth fixing in book description.


I don't remember 9.1, but we have 197 in the current development book.

  -- Bruce

--
http://lists.linuxfromscratch.org/listinfo/lfs-support
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Do not top post on this list.

A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing in e-mail?

http://en.wikipedia.org/wiki/Posting_style


[lfs-support] LFS 9.1 GMP-6.2.0 test suite

2020-06-22 Thread Alexey Orishko
Hi all,

While building LFS 9.1 I got a problem with the description of GMP-6.2.0
test suite results in ch.6.19. In both LFS books it is said that there are
190 tests, but I got 197 "PASS"es. It does not prevent me from going
forwards, but it might be worth fixing in book description.

Regards,
Alexey
-- 
http://lists.linuxfromscratch.org/listinfo/lfs-support
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Do not top post on this list.

A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing in e-mail?

http://en.wikipedia.org/wiki/Posting_style


Re: [lfs-support] iostream.h missing (dev v10)

2020-06-22 Thread Frans de Boer

On 2020-06-22 14:54, Xi Ruoyao wrote:

echo "#include  | x86_64-cross-linux-gnu-g++ -E -x c++ -


Result:

# 1 ""
# 1 ""
# 1 ""
# 1 "/mnt/lfs/usr/include/stdc-predef.h" 1 3 4
# 1 "" 2
# 1 ""
:1:10: fatal error: iostream: No such file or directory
compilation terminated.

--- Frans

--
A: Yes, just like thatA: Ja, net zo
Q: Oh, Just like reading a book backwards Q: Oh, net als een boek 
achterstevoren lezen
A: Because it upsets the natural flow of a story  A: Omdat het de natuurlijke 
gang uit het verhaal haalt
Q: Why is top-posting annoying?   Q: Waarom is Top-posting zo 
irritant?

--
http://lists.linuxfromscratch.org/listinfo/lfs-support
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Do not top post on this list.

A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing in e-mail?

http://en.wikipedia.org/wiki/Posting_style


Re: [lfs-support] iostream.h missing (dev v10)

2020-06-22 Thread Xi Ruoyao
On 2020-06-22 12:49 +0200, Frans de Boer wrote:
> LS,
> 
> Next issue, while compiling ncurses-6.2 i get the next message:
> 
> x86_64-cross-linux-gnu-g++ -DHAVE_CONFIG_H -I../c++ -I. -I../include 
> -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -DNDEBUG -O2 -fPIC -c 
> ../c++/cursesf.cc -o ../obj_s/cursesf.o
> In file included from ../c++/cursesw.h:41,
>   from ../c++/cursesp.h:40,
>   from ../c++/cursesf.h:40,
>   from ../c++/cursesf.cc:36:
> ../c++/etip.h:342:15: fatal error: iostream.h: No such file or directory
>342 | # include 
>|   ^~~~
> compilation terminated.
> 
> ---
> 
> I can't find 'iostream.h' anywhere on my system. However, the file 
> 'iostream' is present on the host as well in the temporary file system.

iostream.h is a pre-ISO header removed from GCC back in 2007.  The code snip in
ncurses code:

#if !((defined(__GNUG__) && defined(__EXCEPTIONS) && (__GNUG__ < 7)) ||
defined(__SUNPRO_CC))
#  if HAVE_IOSTREAM
# include 
# if IOSTREAM_NAMESPACE
using std::cerr;
using std::endl;
# endif
#  else
# include 
#  endif
   extern "C" void exit(int);
#endif

We should have __GNUG__ = 10 (built in g++-pass1), and HAVE_IOSTREAM = 1 (set by
ncurses configure script).  I assume your libstdc++-pass1 was installed into a
wrong location so the configure script could't find , and didn't set
HAVE_IOSTREAM.

Try:

  echo "#include  | x86_64-cross-linux-gnu-g++ -E -x c++ -

to see if  can be found.
-- 
Xi Ruoyao 
School of Aerospace Science and Technology, Xidian University

-- 
http://lists.linuxfromscratch.org/listinfo/lfs-support
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Do not top post on this list.

A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing in e-mail?

http://en.wikipedia.org/wiki/Posting_style


[lfs-support] iostream.h missing (dev v10)

2020-06-22 Thread Frans de Boer

LS,

Next issue, while compiling ncurses-6.2 i get the next message:

x86_64-cross-linux-gnu-g++ -DHAVE_CONFIG_H -I../c++ -I. -I../include 
-D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -DNDEBUG -O2 -fPIC -c 
../c++/cursesf.cc -o ../obj_s/cursesf.o

In file included from ../c++/cursesw.h:41,
 from ../c++/cursesp.h:40,
 from ../c++/cursesf.h:40,
 from ../c++/cursesf.cc:36:
../c++/etip.h:342:15: fatal error: iostream.h: No such file or directory
  342 | # include 
  |   ^~~~
compilation terminated.

---

I can't find 'iostream.h' anywhere on my system. However, the file 
'iostream' is present on the host as well in the temporary file system.


I could compile ncurses-6.2 before this development version.

--- Frans.

--
A: Yes, just like thatA: Ja, net zo
Q: Oh, Just like reading a book backwards Q: Oh, net als een boek 
achterstevoren lezen
A: Because it upsets the natural flow of a story  A: Omdat het de natuurlijke 
gang uit het verhaal haalt
Q: Why is top-posting annoying?   Q: Waarom is Top-posting zo 
irritant?

--
http://lists.linuxfromscratch.org/listinfo/lfs-support
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Do not top post on this list.

A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing in e-mail?

http://en.wikipedia.org/wiki/Posting_style