summaryrefslogtreecommitdiff
path: root/.ycm_extra_conf.py
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2022-12-25 18:23:31 +0100
committerAndreas Kling <kling@serenityos.org>2022-12-28 11:53:41 +0100
commit36980d2a66668a164079bef80c31952698e928da (patch)
tree484d63a4ac98cab8ba8980422be921742d1deb94 /.ycm_extra_conf.py
parentc0e3bdd51ba71527cbc56bc178927fdff7c067c4 (diff)
downloadserenity-36980d2a66668a164079bef80c31952698e928da.zip
Meta: Remove i686 references in YCM configuration
Diffstat (limited to '.ycm_extra_conf.py')
-rw-r--r--.ycm_extra_conf.py2
1 files changed, 1 insertions, 1 deletions
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'