This is the mail archive of the libstdc++@gcc.gnu.org mailing list for the libstdc++ project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Adjust export list for 64-bit systems


In 3.3, we used a wider glob pattern that matched all of this.
In 3.4, the chosen globbing only matches 32-bit systems.
Since we only have globbing, not full regexps, I think this is
the best we can do.

Applied.

What's the correct procedure for updating the abi files?  They
seem to be well out of date for alpha...


r~


        * config/linker-map.gnu: Export virtual function thunks for
        64-bit systems too.

Index: linker-map.gnu
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/config/linker-map.gnu,v
retrieving revision 1.37
diff -c -p -d -r1.37 linker-map.gnu
*** linker-map.gnu	13 Jun 2003 05:45:56 -0000	1.37
--- linker-map.gnu	15 Jun 2003 23:23:18 -0000
*************** GLIBCPP_3.4 {
*** 115,121 ****
--- 115,123 ----
  
      # virtual function thunks
      _ZThn8_NS*;
+     _ZThn16_NS*;
      _ZTv0_n12_NS*;
+     _ZTv0_n24_NS*;
  
      # std::__convert_to_v
      _ZSt14__convert_to_v*;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]