@@ -107,7 +107,7 @@ def Exit( self ):
107
107
'issue tracker, including the entire output of this script (with --verbose) '
108
108
'and the invocation line used to run it.' )
109
109
110
- CLANGD_VERSION = '15.0.0 '
110
+ CLANGD_VERSION = '15.0.1 '
111
111
CLANGD_BINARIES_ERROR_MESSAGE = (
112
112
'No prebuilt Clang {version} binaries for {platform}. '
113
113
'You\' ll have to compile Clangd {version} from source '
@@ -1128,18 +1128,18 @@ def GetClangdTarget():
1128
1128
if OnWindows ():
1129
1129
return [
1130
1130
( 'clangd-{version}-win64' ,
1131
- '6dc5d885857904f661540864a92e044a9ead8efc104adf02698a441fe54fda82 ' ),
1131
+ 'e5da88a729d1c9d00c8a965bdbfdf081a9c7a1602d5cdf7cd75aacea72180195 ' ),
1132
1132
( 'clangd-{version}-win32' ,
1133
- '7ed56b64b06336aab00785fbcb0e4c00693b52dcc76cf300616634d3fd554ab2 ' ) ]
1133
+ 'e5be596af3b4ab5f648e6a3b67bb60a3e97f6567d2b3c43a38f30158792e2641 ' ) ]
1134
1134
if OnMac ():
1135
1135
if OnArm ():
1136
1136
return [
1137
1137
( 'clangd-{version}-arm64-apple-darwin' ,
1138
- '709b5d0e3c0b267177227bb3be7931e9923c1eb618e962d709eb3a579e539d59 ' ) ]
1138
+ '7a606e37b03a795bf673116ef6c58cb888e7bd01199602bcae549c90927f124f ' ) ]
1139
1139
return [
1140
1140
( '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
1143
1143
#
1144
1144
# if OnFreeBSD():
1145
1145
# return [
@@ -1150,16 +1150,16 @@ def GetClangdTarget():
1150
1150
if OnAArch64 ():
1151
1151
return [
1152
1152
( 'clangd-{version}-aarch64-linux-gnu' ,
1153
- '1659eef1ea33859d884f3f7d9a0ec40e3b1a032f2b0f3fb89acb36239669ea42 ' ) ]
1153
+ '2497705a703c0ed5b5ef8717e247b87d084729d6cae20176e0f4dc8e33fff24b ' ) ]
1154
1154
if OnArm ():
1155
1155
return [
1156
1156
None , # First list index is for 64bit archives. ARMv7 is 32bit only.
1157
1157
( 'clangd-{version}-armv7a-linux-gnueabihf' ,
1158
- 'a31632d6d2cd28239b553a30da6b6700c7ddb7b64881e3fd9b795baf61c67fff ' ) ]
1158
+ '615262e7827f0ab273445390d9a0f4d841ba7fc75326483466651a846f4f5586 ' ) ]
1159
1159
if OnX86_64 ():
1160
1160
return [
1161
1161
( 'clangd-{version}-x86_64-unknown-linux-gnu' ,
1162
- 'e1d23a6bfecdcc6eb3a5ded82e6939a4767621f6b7a736d5817d22c48860c563 ' ) ]
1162
+ '8bf1177483daf10012f4e98ae4a6eec4f737bd1b6c8823b3b9b4a670479fcf58 ' ) ]
1163
1163
raise InstallationFailed (
1164
1164
CLANGD_BINARIES_ERROR_MESSAGE .format ( version = CLANGD_VERSION ,
1165
1165
platform = 'this system' ) )
0 commit comments