From 36980d2a66668a164079bef80c31952698e928da Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 25 Dec 2022 18:23:31 +0100 Subject: [PATCH] Meta: Remove i686 references in YCM configuration --- .ycm_extra_conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ycm_extra_conf.py b/.ycm_extra_conf.py index f09750a62c..782f1102da 100644 --- a/.ycm_extra_conf.py +++ b/.ycm_extra_conf.py @@ -39,7 +39,7 @@ DIR_OF_THIS_SCRIPT = os.path.abspath(os.path.dirname(__file__)) SOURCE_EXTENSIONS = ['.cpp', '.c'] gcc_path = None -for serenity_arch in ['x86_64', 'i686', 'aarch64']: +for serenity_arch in ['x86_64', 'aarch64']: candidate_gcc_path = os.path.join( DIR_OF_THIS_SCRIPT, 'Toolchain', 'Local', serenity_arch, 'bin', f'{serenity_arch}-pc-serenity-gcc'