https://gcc.gnu.org/bugzilla/show_bug.cgi?id=123480

--- Comment #37 from Andreas Schwab <[email protected]> ---
A simple hello world program will export all its libstdc++ symbols when linked
with -static-libstdc++.

#include <iostream>

int
main ()
{
  std::cout << "Hello World!\n";
}

Reply via email to