@@ -107,7 +107,7 @@ def Exit( self ):
107107 'issue tracker, including the entire output of this script (with --verbose) '
108108 'and the invocation line used to run it.' )
109109
110- CLANGD_VERSION = '15.0.0 '
110+ CLANGD_VERSION = '15.0.1 '
111111CLANGD_BINARIES_ERROR_MESSAGE = (
112112 'No prebuilt Clang {version} binaries for {platform}. '
113113 'You\' ll have to compile Clangd {version} from source '
@@ -1128,18 +1128,18 @@ def GetClangdTarget():
11281128 if OnWindows ():
11291129 return [
11301130 ( 'clangd-{version}-win64' ,
1131- '6dc5d885857904f661540864a92e044a9ead8efc104adf02698a441fe54fda82 ' ),
1131+ 'e5da88a729d1c9d00c8a965bdbfdf081a9c7a1602d5cdf7cd75aacea72180195 ' ),
11321132 ( 'clangd-{version}-win32' ,
1133- '7ed56b64b06336aab00785fbcb0e4c00693b52dcc76cf300616634d3fd554ab2 ' ) ]
1133+ 'e5be596af3b4ab5f648e6a3b67bb60a3e97f6567d2b3c43a38f30158792e2641 ' ) ]
11341134 if OnMac ():
11351135 if OnArm ():
11361136 return [
11371137 ( 'clangd-{version}-arm64-apple-darwin' ,
1138- '709b5d0e3c0b267177227bb3be7931e9923c1eb618e962d709eb3a579e539d59 ' ) ]
1138+ '7a606e37b03a795bf673116ef6c58cb888e7bd01199602bcae549c90927f124f ' ) ]
11391139 return [
11401140 ( 'clangd-{version}-x86_64-apple-darwin' ,
1141- '1286e93cfcc7201e48989c53da47d7cd49e653ee09ff94e4f82d99fa33fd4743 ' ) ]
1142- # FreeBSD binaries are not yet available for clang 15
1141+ '0be7dc9042584a84524f57d62bde0ef168b3e00a02205053cfe5f73a13475c97 ' ) ]
1142+ # FreeBSD binaries are not yet available for clang 15.0.1
11431143 #
11441144 # if OnFreeBSD():
11451145 # return [
@@ -1150,16 +1150,16 @@ def GetClangdTarget():
11501150 if OnAArch64 ():
11511151 return [
11521152 ( 'clangd-{version}-aarch64-linux-gnu' ,
1153- '1659eef1ea33859d884f3f7d9a0ec40e3b1a032f2b0f3fb89acb36239669ea42 ' ) ]
1153+ '2497705a703c0ed5b5ef8717e247b87d084729d6cae20176e0f4dc8e33fff24b ' ) ]
11541154 if OnArm ():
11551155 return [
11561156 None , # First list index is for 64bit archives. ARMv7 is 32bit only.
11571157 ( 'clangd-{version}-armv7a-linux-gnueabihf' ,
1158- 'a31632d6d2cd28239b553a30da6b6700c7ddb7b64881e3fd9b795baf61c67fff ' ) ]
1158+ '615262e7827f0ab273445390d9a0f4d841ba7fc75326483466651a846f4f5586 ' ) ]
11591159 if OnX86_64 ():
11601160 return [
11611161 ( 'clangd-{version}-x86_64-unknown-linux-gnu' ,
1162- 'e1d23a6bfecdcc6eb3a5ded82e6939a4767621f6b7a736d5817d22c48860c563 ' ) ]
1162+ '8bf1177483daf10012f4e98ae4a6eec4f737bd1b6c8823b3b9b4a670479fcf58 ' ) ]
11631163 raise InstallationFailed (
11641164 CLANGD_BINARIES_ERROR_MESSAGE .format ( version = CLANGD_VERSION ,
11651165 platform = 'this system' ) )
0 commit comments