| Index: tools/clang/scripts/package.py
|
| diff --git a/tools/clang/scripts/package.py b/tools/clang/scripts/package.py
|
| index 17181098f97a3d2f08f462710a3e213e68c80727..a4aacdc41e27cc0fc0cd8c5d07cd06fdae670a50 100755
|
| --- a/tools/clang/scripts/package.py
|
| +++ b/tools/clang/scripts/package.py
|
| @@ -207,6 +207,7 @@ def main():
|
| else:
|
| so_ext = 'dylib' if sys.platform == 'darwin' else 'so'
|
| want.extend(['bin/clang',
|
| + 'bin/lld',
|
| 'lib/libFindBadConstructs.' + so_ext,
|
| 'lib/libBlinkGCPlugin.' + so_ext,
|
| ])
|
| @@ -260,6 +261,7 @@ def main():
|
| if sys.platform != 'win32':
|
| os.symlink('clang', os.path.join(pdir, 'bin', 'clang++'))
|
| os.symlink('clang', os.path.join(pdir, 'bin', 'clang-cl'))
|
| + os.symlink('lld', os.path.join(pdir, 'bin', 'ld.lld'))
|
|
|
| # Copy libc++ headers.
|
| if sys.platform == 'darwin':
|
|
|