| Index: tools/clang/scripts/package.py
|
| diff --git a/tools/clang/scripts/package.py b/tools/clang/scripts/package.py
|
| index 5cf3d067995c509de945c8bd16a159298c77d81d..17181098f97a3d2f08f462710a3e213e68c80727 100755
|
| --- a/tools/clang/scripts/package.py
|
| +++ b/tools/clang/scripts/package.py
|
| @@ -211,11 +211,12 @@ def main():
|
| 'lib/libBlinkGCPlugin.' + so_ext,
|
| ])
|
| if sys.platform == 'darwin':
|
| - want.extend([# Copy only the OSX (ASan and profile) and iossim (ASan)
|
| - # runtime libraries:
|
| + want.extend([# Copy only the OSX and iossim (ASan and profile) runtime
|
| + # libraries:
|
| 'lib/clang/*/lib/darwin/*asan_osx*',
|
| 'lib/clang/*/lib/darwin/*asan_iossim*',
|
| 'lib/clang/*/lib/darwin/*profile_osx*',
|
| + 'lib/clang/*/lib/darwin/*profile_iossim*',
|
| ])
|
| elif sys.platform.startswith('linux'):
|
| # Copy the libstdc++.so.6 we linked Clang against so it can run.
|
|
|