summaryrefslogtreecommitdiff
path: root/xenia-build
diff options
context:
space:
mode:
authorgibbed <rick@gibbed.us>2020-02-22 10:56:09 -0600
committerRick Gibbed <rick@gibbed.us>2020-02-22 12:31:21 -0600
commitec15da8b14ecf3625591b1a5bbdc071f35321a13 (patch)
tree36e6fac9ea95bc5aee56957380893c8266f5694b /xenia-build
parent2ad5ee8ff692699f9b6cfff5bf85ebc03aa7348a (diff)
Use newer clang+llvm+clang-format.
Diffstat (limited to 'xenia-build')
-rwxr-xr-xxenia-build4
1 files changed, 2 insertions, 2 deletions
diff --git a/xenia-build b/xenia-build
index 7c663aa35..3981555e4 100755
--- a/xenia-build
+++ b/xenia-build
@@ -310,7 +310,7 @@ def get_clang_format_binary():
attempts = [
'C:\\Program Files\\LLVM\\bin\\clang-format.exe',
'C:\\Program Files (x86)\\LLVM\\bin\\clang-format.exe',
- 'clang-format-3.8',
+ 'clang-format-9',
'clang-format',
]
for binary in attempts:
@@ -318,7 +318,7 @@ def get_clang_format_binary():
return binary
print('ERROR: clang-format is not on PATH')
print('LLVM is available from https://llvm.org/releases/download.html')
- print('At least version 3.8 is required.')
+ print('At least version 9 is required.')
print('See docs/style_guide.md for instructions on how to get it.')
sys.exit(1)