diff options
author | Moonchild <moonchild@palemoon.org> | 2021-10-17 17:19:41 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2021-10-17 17:19:41 +0000 |
commit | 8a409cdaebdfb72595b17a563a82d3448ca02763 (patch) | |
tree | e5f53bbf09e508826b864920891e0c64081136a0 /.ycm_extra_conf.py | |
parent | df215eb533eb4cfdb51d85dd34a46c0e53d25ff9 (diff) | |
download | aura-central-8a409cdaebdfb72595b17a563a82d3448ca02763.tar.gz |
Issue %3020 - Part 9: Second pass remove android defines and build system stuff.
Mostly IPC, tools and mozbuild.
Diffstat (limited to '.ycm_extra_conf.py')
-rw-r--r-- | .ycm_extra_conf.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/.ycm_extra_conf.py b/.ycm_extra_conf.py index 4539ae535..ec4065836 100644 --- a/.ycm_extra_conf.py +++ b/.ycm_extra_conf.py @@ -36,11 +36,6 @@ def FlagsForFile(filename): flag_list = shlex.split(out.getvalue()) - # This flag is added by Fennec for android build and causes ycmd to fail to parse the file. - # Removing this flag is a workaround until ycmd starts to handle this flag properly. - # https://github.com/Valloric/YouCompleteMe/issues/1490 - final_flags = [x for x in flag_list if not x.startswith('-march=armv')] - return { 'flags': final_flags, 'do_cache': True |