2015-04-24 19:12:50 +00:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
|
|
|
import imp
|
|
|
|
import os
|
|
|
|
import shlex
|
2015-05-07 11:48:00 +00:00
|
|
|
import sys
|
2016-06-30 01:15:46 +00:00
|
|
|
try:
|
|
|
|
from StringIO import StringIO
|
|
|
|
except ImportError:
|
|
|
|
from io import StringIO
|
2015-05-07 11:48:00 +00:00
|
|
|
|
|
|
|
old_bytecode = sys.dont_write_bytecode
|
|
|
|
sys.dont_write_bytecode = True
|
2015-04-24 19:12:50 +00:00
|
|
|
|
|
|
|
path = os.path.join(os.path.dirname(__file__), 'mach')
|
|
|
|
|
|
|
|
if not os.path.exists(path):
|
|
|
|
path = os.path.join(os.path.dirname(__file__), 'config.status')
|
|
|
|
config = imp.load_module('_buildconfig', open(path), path, ('', 'r', imp.PY_SOURCE))
|
|
|
|
path = os.path.join(config.topsrcdir, 'mach')
|
|
|
|
mach_module = imp.load_module('_mach', open(path), path, ('', 'r', imp.PY_SOURCE))
|
|
|
|
|
2015-05-07 11:48:00 +00:00
|
|
|
sys.dont_write_bytecode = old_bytecode
|
|
|
|
|
2015-04-24 19:12:50 +00:00
|
|
|
def FlagsForFile(filename):
|
|
|
|
mach = mach_module.get_mach()
|
|
|
|
out = StringIO()
|
2016-08-09 04:00:20 +00:00
|
|
|
|
|
|
|
# Mach calls sys.stdout.fileno(), so we need to fake it when capturing it.
|
|
|
|
# Returning an invalid file descriptor does the trick.
|
|
|
|
out.fileno = lambda: -1
|
2015-04-24 19:12:50 +00:00
|
|
|
out.encoding = None
|
|
|
|
mach.run(['compileflags', filename], stdout=out, stderr=out)
|
|
|
|
|
2015-05-04 05:15:00 +00:00
|
|
|
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')]
|
|
|
|
|
2015-04-24 19:12:50 +00:00
|
|
|
return {
|
2015-05-04 05:15:00 +00:00
|
|
|
'flags': final_flags,
|
2015-04-24 19:12:50 +00:00
|
|
|
'do_cache': True
|
|
|
|
}
|