[libcxx] r295399 - update revision in CHANGELOG.TXT and fix python error

Eric Fiselier via cfe-commits cfe-commits at lists.llvm.org
Thu Feb 16 17:56:57 PST 2017


Author: ericwf
Date: Thu Feb 16 19:56:57 2017
New Revision: 295399

URL: http://llvm.org/viewvc/llvm-project?rev=295399&view=rev
Log:
update revision in CHANGELOG.TXT and fix python error

Modified:
    libcxx/trunk/lib/abi/CHANGELOG.TXT
    libcxx/trunk/utils/libcxx/sym_check/extract.py

Modified: libcxx/trunk/lib/abi/CHANGELOG.TXT
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/lib/abi/CHANGELOG.TXT?rev=295399&r1=295398&r2=295399&view=diff
==============================================================================
--- libcxx/trunk/lib/abi/CHANGELOG.TXT (original)
+++ libcxx/trunk/lib/abi/CHANGELOG.TXT Thu Feb 16 19:56:57 2017
@@ -134,8 +134,8 @@ Version 4.0
   Symbol added: _ZTSSt12bad_any_cast
   Symbol added: _ZTVSt12bad_any_cast
 
-* rTBD - Remove basic_string::insert and basic_string::replace template methods
-         which should be inline.
+* r295398 - Remove basic_string::insert and basic_string::replace template methods
+    which should be inline.
 
   These functions should never have had visible definitions in the dylib but
   since they were previously not specified with 'inline' they accidentally

Modified: libcxx/trunk/utils/libcxx/sym_check/extract.py
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/utils/libcxx/sym_check/extract.py?rev=295399&r1=295398&r2=295399&view=diff
==============================================================================
--- libcxx/trunk/utils/libcxx/sym_check/extract.py (original)
+++ libcxx/trunk/utils/libcxx/sym_check/extract.py Thu Feb 16 19:56:57 2017
@@ -49,7 +49,7 @@ class NMExtractor(object):
         parsed symbols.
         """
         cmd = [self.nm_exe] + self.flags + [lib]
-        out, _, exit_code = util.executeCommandVerbose(cmd)
+        out, _, exit_code = libcxx.util.executeCommandVerbose(cmd)
         if exit_code != 0:
             raise RuntimeError('Failed to run %s on %s' % (self.nm_exe, lib))
         fmt_syms = (self._extract_sym(l)




More information about the cfe-commits mailing list