diff options
author | van Hauser <vh@thc.org> | 2020-04-20 11:32:44 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-04-20 11:32:44 +0200 |
commit | b6a15d9719fd93ebbc885b9c53ae21f7bd325ee0 (patch) | |
tree | ed87581597b0564015cf600234a9b06e48110975 /.custom-format.py | |
parent | 4c90293e447a6e43129b39e14a72cbad38704522 (diff) | |
download | afl++-b6a15d9719fd93ebbc885b9c53ae21f7bd325ee0.tar.gz |
switched to clang-format-10
Diffstat (limited to '.custom-format.py')
-rwxr-xr-x | .custom-format.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.custom-format.py b/.custom-format.py index e3779b68..164815b1 100755 --- a/.custom-format.py +++ b/.custom-format.py @@ -29,14 +29,14 @@ CLANG_FORMAT_BIN = os.getenv("CLANG_FORMAT_BIN") if CLANG_FORMAT_BIN is None: o = 0 try: - p = subprocess.Popen(["clang-format-8", "--version"], stdout=subprocess.PIPE) + p = subprocess.Popen(["clang-format-10", "--version"], stdout=subprocess.PIPE) o, _ = p.communicate() o = str(o, "utf-8") o = o[len("clang-format version "):].strip() o = o[:o.find(".")] o = int(o) except: - print ("clang-format-8 is needed. Aborted.") + print ("clang-format-10 is needed. Aborted.") exit(1) #if o < 7: # if subprocess.call(['which', 'clang-format-7'], stdout=subprocess.PIPE) == 0: @@ -51,7 +51,7 @@ if CLANG_FORMAT_BIN is None: # print ("clang-format 7 or above is needed. Aborted.") # exit(1) else: - CLANG_FORMAT_BIN = 'clang-format-8' + CLANG_FORMAT_BIN = 'clang-format-10' COLUMN_LIMIT = 80 for line in fmt.split("\n"): |