This adds a note about iostream usage so it does not catch others
in surpise like it has already.

OK?
---
 htdocs/gcc-13/changes.html | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/htdocs/gcc-13/changes.html b/htdocs/gcc-13/changes.html
index 70732ec0..7c83f7c4 100644
--- a/htdocs/gcc-13/changes.html
+++ b/htdocs/gcc-13/changes.html
@@ -25,6 +25,11 @@ You may also want to check out our
 <!-- .................................................................. -->
 <h2>Caveats</h2>
 <ul>
+    <li>libstdc++ uses constructors inside the library to initialize 
std::cout/std::cin, etc.
+     instead of having it done in each source which uses iostream header.
+     This requires you to make sure the dynamic loader to load the new 
libstdc++v3 library
+     (examples of how to do this is to use -Wl,-rpath,... while linking or 
LD_LIBRARY_PATH
+     while running the program).  </li>
     <li>OpenMP offloading to Intel MIC has been removed.</li>
     <li>The support for the <code>cr16-elf</code>, <code>tilegx*-linux</code>, 
<code>tilepro*-linux</code>,
       <code>hppa[12]*-*-hpux10*</code>, <code>hppa[12]*-*-hpux11*</code>
-- 
2.31.1

Reply via email to