update revision in CHANGELOG.TXT and fix python error
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@295399 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user