version_script.map 519 B

12345678910111213141516171819202122232425262728293031323334
  1. V1 {
  2. global:
  3. extern "C++"
  4. {
  5. "bar()";
  6. "baz(int*)";
  7. };
  8. foo;
  9. blaza*;
  10. bar*;
  11. # Make sure we parse "extern" when it's not first thing in the section.
  12. extern "C++"
  13. {
  14. myns::*;
  15. };
  16. # Would be a keyword in a linker script.
  17. SECTIONS;
  18. sizeof_headers;
  19. # Crazy globbiness
  20. glob*f[^A-Zo]st?ff;
  21. local:
  22. *foo*;
  23. };
  24. V2 {
  25. global:
  26. extern "C++" {
  27. otherns::stuff;
  28. };
  29. blaz*;
  30. local:
  31. _[^A-Z]*;
  32. } V1;