ymake_conf.py 94 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526
  1. #!/usr/bin/env python
  2. # coding=utf-8
  3. from __future__ import print_function
  4. import base64
  5. import itertools
  6. import json
  7. import logging
  8. import ntpath
  9. import optparse
  10. import os
  11. import posixpath
  12. import re
  13. import subprocess
  14. import sys
  15. import tempfile
  16. import six
  17. logger = logging.getLogger(__name__ if __name__ != '__main__' else 'ymake_conf.py')
  18. def init_logger(verbose):
  19. logging.basicConfig(level=logging.DEBUG if verbose else logging.INFO)
  20. def find_conf(conf_file):
  21. script_dir = os.path.dirname(__file__)
  22. full_path = os.path.join(script_dir, conf_file)
  23. if os.path.exists(full_path):
  24. return full_path
  25. return None
  26. class DebugString(object):
  27. def __init__(self, get_string_func):
  28. self.get_string_func = get_string_func
  29. def __str__(self):
  30. return self.get_string_func()
  31. class ConfigureError(Exception):
  32. pass
  33. class Platform(object):
  34. def __init__(self, name, os, arch):
  35. """
  36. :type name: str
  37. :type os: str
  38. :type arch: str
  39. """
  40. self.name = name
  41. self.os = self._parse_os(os)
  42. self.arch = arch.lower()
  43. self.is_i386 = self.arch in ('i386', 'x86')
  44. self.is_i686 = self.arch == 'i686'
  45. self.is_x86 = self.is_i386 or self.is_i686
  46. self.is_x86_64 = self.arch in ('x86_64', 'amd64')
  47. self.is_intel = self.is_x86 or self.is_x86_64
  48. self.is_armv7 = self.arch in ('armv7', 'armv7a', 'armv7ahf', 'armv7a_neon', 'arm', 'armv7a_cortex_a9', 'armv7ahf_cortex_a35', 'armv7ahf_cortex_a53')
  49. self.is_armv8 = self.arch in ('armv8', 'armv8a', 'arm64', 'aarch64', 'armv8a_cortex_a35', 'armv8a_cortex_a53')
  50. self.is_armv8m = self.arch in ('armv8m_cortex_m33',)
  51. self.is_armv7em = self.arch in ('armv7em_cortex_m4', 'armv7em_cortex_m7')
  52. self.is_arm64 = self.arch in ('arm64',)
  53. self.is_arm = self.is_armv7 or self.is_armv8 or self.is_armv8m or self.is_armv7em
  54. self.is_armv7_neon = self.arch in ('armv7a_neon', 'armv7ahf', 'armv7a_cortex_a9', 'armv7ahf_cortex_a35', 'armv7ahf_cortex_a53')
  55. self.is_armv7hf = self.arch in ('armv7ahf', 'armv7ahf_cortex_a35', 'armv7ahf_cortex_a53')
  56. self.is_rv32imc = self.arch in ('riscv32_esp',)
  57. self.is_riscv32 = self.is_rv32imc
  58. self.is_nds32 = self.arch in ('nds32le_elf_mculib_v5f',)
  59. self.is_xtensa = self.arch in ('xtensa_hifi5',)
  60. self.armv7_float_abi = None
  61. if self.is_armv7:
  62. if self.is_armv7hf:
  63. self.armv7_float_abi = 'hard'
  64. else:
  65. self.armv7_float_abi = 'softfp'
  66. self.is_cortex_a9 = self.arch in ('armv7a_cortex_a9',)
  67. self.is_cortex_a35 = self.arch in ('armv7ahf_cortex_a35', 'armv8a_cortex_a35')
  68. self.is_cortex_a53 = self.arch in ('armv7ahf_cortex_a53', 'armv8a_cortex_a53')
  69. self.is_cortex_m33 = self.arch in ('armv8m_cortex_m33',)
  70. self.is_cortex_m4 = self.arch in ('armv7em_cortex_m4',)
  71. self.is_cortex_m7 = self.arch in ('armv7em_cortex_m7')
  72. self.is_power8le = self.arch == 'ppc64le'
  73. self.is_power9le = self.arch == 'power9le'
  74. self.is_powerpc = self.is_power8le or self.is_power9le
  75. self.is_wasm64 = self.arch == 'wasm64'
  76. self.is_wasm = self.is_wasm64
  77. self.is_32_bit = self.is_x86 or self.is_armv7 or self.is_armv8m or self.is_riscv32 or self.is_nds32 or self.is_armv7em or self.is_xtensa
  78. self.is_64_bit = self.is_x86_64 or self.is_armv8 or self.is_powerpc or self.is_wasm64
  79. assert self.is_32_bit or self.is_64_bit
  80. assert not (self.is_32_bit and self.is_64_bit)
  81. self.is_linux = self.os == 'linux' or 'yocto' in self.os
  82. self.is_linux_x86_64 = self.is_linux and self.is_x86_64
  83. self.is_linux_armv8 = self.is_linux and self.is_armv8
  84. self.is_linux_armv7 = self.is_linux and self.is_armv7
  85. self.is_linux_power8le = self.is_linux and self.is_power8le
  86. self.is_linux_power9le = self.is_linux and self.is_power9le
  87. self.is_linux_powerpc = self.is_linux_power8le or self.is_linux_power9le
  88. self.is_macos = self.os == 'macos'
  89. self.is_macos_x86_64 = self.is_macos and self.is_x86_64
  90. self.is_macos_arm64 = self.is_macos and self.is_arm64
  91. self.is_iossim = self.os == 'iossim' or (self.os == 'ios' and self.is_intel)
  92. self.is_ios = self.os == 'ios' or self.is_iossim
  93. self.is_apple = self.is_macos or self.is_ios
  94. self.is_windows = self.os == 'windows'
  95. self.is_windows_x86_64 = self.is_windows and self.is_x86_64
  96. self.is_android = self.os == 'android'
  97. if self.is_android:
  98. # This is default Android API level unless `-DANDROID_API` is specified in cmdline
  99. default_android_api = 21
  100. self.android_api = int(preset('ANDROID_API', default_android_api))
  101. self.is_cygwin = self.os == 'cygwin'
  102. self.is_yocto = self.os == 'yocto'
  103. self.is_emscripten = self.os == 'emscripten'
  104. self.is_none = self.os == 'none'
  105. self.is_posix = self.is_linux or self.is_apple or self.is_android or self.is_cygwin or self.is_yocto
  106. @staticmethod
  107. def from_json(data):
  108. name = data.get('visible_name', data['toolchain'])
  109. return Platform(name, os=data['os'], arch=data['arch'])
  110. @property
  111. def os_variables(self):
  112. # 'LINUX' variable, for backward compatibility
  113. yield self.os.upper()
  114. # 'OS_LINUX' variable
  115. yield 'OS_{}'.format(self.os.upper())
  116. # yocto is linux
  117. if 'yocto' in self.os:
  118. yield 'LINUX'
  119. yield 'OS_LINUX'
  120. if self.is_macos:
  121. yield 'DARWIN'
  122. yield 'OS_DARWIN'
  123. if self.is_iossim:
  124. yield 'IOS'
  125. yield 'OS_IOS'
  126. yield 'OS_IOSSIM'
  127. @property
  128. def arch_variables(self):
  129. return select_multiple((
  130. (self.is_i386 or self.is_i686, 'ARCH_I386'),
  131. (self.is_i686, 'ARCH_I686'),
  132. (self.is_x86_64, 'ARCH_X86_64'),
  133. (self.is_armv7, 'ARCH_ARM7'),
  134. (self.is_armv7_neon, 'ARCH_ARM7_NEON'),
  135. (self.is_armv8, 'ARCH_ARM64'),
  136. (self.is_armv8m, 'ARCH_ARM8M'),
  137. (self.is_armv7em, 'ARCH_ARM7EM'),
  138. (self.is_arm, 'ARCH_ARM'),
  139. (self.is_linux_armv8 or self.is_macos_arm64, 'ARCH_AARCH64'),
  140. (self.is_powerpc, 'ARCH_PPC64LE'),
  141. (self.is_power8le, 'ARCH_POWER8LE'),
  142. (self.is_power9le, 'ARCH_POWER9LE'),
  143. (self.is_riscv32, 'ARCH_RISCV32'),
  144. (self.is_xtensa, 'ARCH_XTENSA'),
  145. (self.is_nds32, 'ARCH_NDS32'),
  146. (self.is_wasm64, 'ARCH_WASM64'),
  147. (self.is_32_bit, 'ARCH_TYPE_32'),
  148. (self.is_64_bit, 'ARCH_TYPE_64'),
  149. ))
  150. @property
  151. def library_path_variables(self):
  152. return ['LD_LIBRARY_PATH', 'DYLD_LIBRARY_PATH']
  153. def find_in_dict(self, dict_, default=None):
  154. if dict_ is None:
  155. return default
  156. for key in six.iterkeys(dict_):
  157. if self._parse_os(key) == self.os:
  158. return dict_[key]
  159. return default
  160. @property
  161. def os_compat(self):
  162. if self.is_macos:
  163. return 'DARWIN'
  164. else:
  165. return self.os.upper()
  166. @property
  167. def canonized_platform(self):
  168. os = None
  169. if self.os == 'macos':
  170. os = 'darwin'
  171. elif self.os == 'windows':
  172. os = 'win32'
  173. else:
  174. os = self.os
  175. if self.arch != 'x86_64':
  176. return '-'.join([os, self.arch])
  177. else:
  178. return os
  179. def exe(self, *paths):
  180. if self.is_windows:
  181. return ntpath.join(*itertools.chain(paths[:-1], (paths[-1] + '.exe',)))
  182. else:
  183. return posixpath.join(*paths)
  184. def __str__(self):
  185. return '{name}-{os}-{arch}'.format(name=self.name, os=self.os, arch=self.arch)
  186. def __eq__(self, other):
  187. return (self.name, self.os, self.arch) == (other.name, other.os, other.arch)
  188. def __cmp__(self, other):
  189. return cmp((self.name, self.os, self.arch), (other.name, other.os, other.arch))
  190. def __hash__(self):
  191. return hash((self.name, self.os, self.arch))
  192. @staticmethod
  193. def _parse_os(os):
  194. os = os.lower()
  195. if os == 'darwin':
  196. return 'macos'
  197. if os in ('win', 'win32', 'win64'):
  198. return 'windows'
  199. if os.startswith('cygwin'):
  200. return 'cygwin'
  201. return os
  202. def which(prog):
  203. if os.path.exists(prog) and os.access(prog, os.X_OK):
  204. return prog
  205. # Ищем в $PATH только простые команды, без путей.
  206. if os.path.dirname(prog) != '':
  207. return None
  208. path = os.getenv('PATH', '')
  209. pathext = os.environ.get('PATHEXT')
  210. # На Windows %PATHEXT% указывает на список расширений, которые нужно проверять
  211. # при поиске команды в пути. Точное совпадение без расширения имеет приоритет.
  212. pathext = [''] if pathext is None else [''] + pathext.lower().split(os.pathsep)
  213. for dir_ in path.split(os.path.pathsep):
  214. for ext in pathext:
  215. p = os.path.join(dir_, prog + ext)
  216. if os.path.exists(p) and os.path.isfile(p) and os.access(p, os.X_OK):
  217. return p
  218. return None
  219. def get_stdout(command):
  220. stdout, code = get_stdout_and_code(command)
  221. return stdout if code == 0 else None
  222. def get_stdout_and_code(command):
  223. # noinspection PyBroadException
  224. try:
  225. process = subprocess.Popen(command, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
  226. stdout, _ = process.communicate()
  227. return stdout, process.returncode
  228. except Exception as e:
  229. logger.info("While run: `%s`", e)
  230. return None, None
  231. def to_strings(o):
  232. if isinstance(o, (list, tuple)):
  233. for s in o:
  234. for ss in to_strings(s):
  235. yield ss
  236. else:
  237. if o is not None:
  238. if isinstance(o, bool):
  239. yield 'yes' if o else 'no'
  240. elif isinstance(o, (str, int)):
  241. yield str(o)
  242. else:
  243. raise ConfigureError('Unexpected value {} {}'.format(type(o), o))
  244. def emit(key, *value):
  245. print('{0}={1}'.format(key, ' '.join(to_strings(value))))
  246. def emit_with_comment(comment, key, *value):
  247. print('# {}'.format(comment))
  248. emit(key, *value)
  249. def emit_with_ignore_comment(key, *value):
  250. emit_with_comment('IGNORE YMAKE CONF CONTEXT', key, *value)
  251. def append(key, *value):
  252. print('{0}+={1}'.format(key, ' '.join(to_strings(value))))
  253. def emit_big(text):
  254. prefix = None
  255. first = True
  256. for line in text.split('\n'):
  257. if prefix is None:
  258. if not line:
  259. continue
  260. prefix = 0
  261. while prefix < len(line) and line[prefix] == ' ':
  262. prefix += 1
  263. if first: # Be pretty, prepend an empty line before the output
  264. print()
  265. first = False
  266. print(line[prefix:])
  267. class Variables(dict):
  268. def emit(self, with_ignore_comment=[]):
  269. with_ignore_comment_set = set(with_ignore_comment)
  270. for k in sorted(self.keys()):
  271. if k in with_ignore_comment_set:
  272. emit_with_ignore_comment(k, self[k])
  273. else:
  274. emit(k, self[k])
  275. def update_from_presets(self):
  276. for k in six.iterkeys(self):
  277. v = preset(k)
  278. if v is not None:
  279. self[k] = v
  280. def reset_if_any(self, value_check=None, reset_value=None):
  281. if value_check is None:
  282. def value_check(v_):
  283. return v_ is None
  284. if any(map(value_check, six.itervalues(self))):
  285. for k in six.iterkeys(self):
  286. self[k] = reset_value
  287. def format_env(env, list_separator=':'):
  288. def format_value(value):
  289. return value if isinstance(value, str) else ('\\' + list_separator).join(value)
  290. def format(kv):
  291. return '${env:"%s=%s"}' % (kv[0], format_value(kv[1]))
  292. return ' '.join(map(format, sorted(six.iteritems(env))))
  293. # TODO(somov): Проверить, используется ли это. Может быть, выпилить.
  294. def userify_presets(presets, keys):
  295. for key in keys:
  296. user_key = 'USER_{}'.format(key)
  297. values = [presets.pop(key, None), presets.get(user_key)]
  298. presets[user_key] = ' '.join(filter(None, values))
  299. def preset(key, default=None):
  300. return opts().presets.get(key, default)
  301. def is_positive(key):
  302. return is_positive_str(preset(key, ''))
  303. def is_positive_str(s):
  304. return s.lower() in ('yes', 'true', 'on', '1')
  305. def is_negative(key):
  306. return is_negative_str(preset(key, ''))
  307. def is_negative_str(s):
  308. return s.lower() in ('no', 'false', 'off', '0')
  309. def to_bool(s, default=None):
  310. if isinstance(s, six.string_types):
  311. if is_positive_str(s):
  312. return True
  313. if is_negative_str(s):
  314. return False
  315. if default is None:
  316. raise ConfigureError('{} is not a bool value'.format(s))
  317. return default
  318. def select(selectors, default=None, no_default=False):
  319. for enabled, value in selectors:
  320. if enabled:
  321. return value
  322. if no_default:
  323. raise ConfigureError()
  324. return default
  325. def select_multiple(selectors):
  326. for enabled, value in selectors:
  327. if enabled:
  328. yield value
  329. def unique(it):
  330. known = set()
  331. for i in it:
  332. if i not in known:
  333. known.add(i)
  334. yield i
  335. class Options(object):
  336. def __init__(self, argv):
  337. def parse_presets(raw_presets):
  338. presets = {}
  339. for p in raw_presets:
  340. toks = p.split('=', 1)
  341. name = toks[0]
  342. value = toks[1] if len(toks) >= 2 else ''
  343. presets[name] = value
  344. return presets
  345. parser = optparse.OptionParser(add_help_option=False)
  346. opt_group = optparse.OptionGroup(parser, 'Conf script options')
  347. opt_group.add_option('--toolchain-params', dest='toolchain_params', action='store', help='Set toolchain params via file')
  348. opt_group.add_option('-D', '--preset', dest='presets', action='append', default=[], help='set or override presets')
  349. opt_group.add_option('-l', '--local-distbuild', dest='local_distbuild', action='store_true', default=False, help='conf for local distbuild')
  350. parser.add_option_group(opt_group)
  351. self.options, self.arguments = parser.parse_args(argv)
  352. argv = self.arguments
  353. if len(argv) < 4:
  354. print('Usage: ArcRoot, --BuildType--, Verbosity, [Path to local.ymake]', file=sys.stderr)
  355. sys.exit(1)
  356. self.arcadia_root = argv[1]
  357. init_logger(argv[3] == 'verbose')
  358. # Эти переменные не надо использоваться напрямую. Их значения уже разбираются в других местах.
  359. self.build_type = argv[2].lower()
  360. self.local_distbuild = self.options.local_distbuild
  361. self.toolchain_params = self.options.toolchain_params
  362. self.presets = parse_presets(self.options.presets)
  363. userify_presets(self.presets, ('CFLAGS', 'CXXFLAGS', 'CONLYFLAGS', 'LDFLAGS', 'GO_COMPILE_FLAGS', 'GO_LINK_FLAGS'))
  364. Instance = None
  365. def opts():
  366. if Options.Instance is None:
  367. Options.Instance = Options(sys.argv)
  368. return Options.Instance
  369. class Profiler(object):
  370. Generic = 'generic'
  371. GProf = 'gprof'
  372. class Arcadia(object):
  373. def __init__(self, root):
  374. self.root = root
  375. class Build(object):
  376. def __init__(self, arcadia, build_type, toolchain_params, force_ignore_local_files=False):
  377. self.arcadia = arcadia
  378. self.params = self._load_json_from_base64(toolchain_params)
  379. self.build_type = build_type
  380. platform = self.params['platform']
  381. self.host = Platform.from_json(platform['host'])
  382. self.target = Platform.from_json(platform['target'])
  383. self.tc = self._get_toolchain_options()
  384. # TODO(somov): Удалить, когда перестанет использоваться.
  385. self.build_system = 'ymake'
  386. self.ignore_local_files = False
  387. dist_prefix = 'dist-'
  388. if self.build_type.startswith(dist_prefix):
  389. self.build_system = 'distbuild'
  390. self.build_type = self.build_type[len(dist_prefix):]
  391. if force_ignore_local_files:
  392. self.ignore_local_files = True
  393. if self.is_ide_build_type(self.build_type):
  394. self.ignore_local_files = True
  395. self.pic = not is_positive('FORCE_NO_PIC')
  396. @property
  397. def host_target(self):
  398. return self.host, self.target
  399. def print_build(self):
  400. self._print_build_settings()
  401. host_os = System(self.host)
  402. host_os.print_host_settings()
  403. target_os = System(self.target)
  404. target_os.print_target_settings()
  405. if self.pic:
  406. emit('PIC', 'yes')
  407. emit('COMPILER_ID', self.tc.type.upper())
  408. if self.is_valgrind:
  409. emit('WITH_VALGRIND', 'yes')
  410. if self.is_coverage:
  411. emit('_BUILD_COVERAGE', 'yes')
  412. if self.is_debug:
  413. emit('_BUILD_DEBUG', 'yes')
  414. if self.is_fast_debug:
  415. emit('_BUILD_FAST_DEBUG', 'yes')
  416. if self.is_release:
  417. emit('_BUILD_RELEASE', 'yes')
  418. if self.is_sanitized:
  419. emit('_BUILD_SANITIZED', 'yes')
  420. if self.is_size_optimized:
  421. emit('_BUILD_SIZE_OPTIMIZED', 'yes')
  422. if self.with_ndebug:
  423. emit('_BUILD_WITH_NDEBUG', 'yes')
  424. toolchain_type, compiler_type, linker_type = Compilers[self.tc.type]
  425. toolchain = toolchain_type(self.tc, self)
  426. compiler = compiler_type(self.tc, self)
  427. linker = linker_type(self.tc, self)
  428. toolchain.print_toolchain()
  429. compiler.print_compiler()
  430. linker.print_linker()
  431. self._print_other_settings(compiler)
  432. def _print_build_settings(self):
  433. emit('BUILD_TYPE', self.build_type.upper())
  434. emit('BT_' + self.build_type.upper().replace('-', '_'), 'yes')
  435. if self.build_system == 'distbuild':
  436. emit('DISTBUILD', 'yes')
  437. elif self.build_system != 'ymake':
  438. raise ConfigureError()
  439. python_bin = preset('BUILD_PYTHON_BIN', '$(PYTHON)/python')
  440. emit('YMAKE_PYTHON', python_bin)
  441. emit('YMAKE_UNPICKLER', python_bin, '$ARCADIA_ROOT/build/plugins/_unpickler.py')
  442. @property
  443. def is_release(self):
  444. # TODO(somov): Проверить, бывают ли тут суффиксы на самом деле
  445. return self.build_type in ('release', 'relwithdebinfo', 'minsizerel', 'profile', 'gprof') or self.build_type.endswith('-release')
  446. @property
  447. def is_debug(self):
  448. return self.build_type in ('debug', 'debugnoasserts', 'fastdebug') or self.build_type.endswith('-debug')
  449. @property
  450. def is_fast_debug(self):
  451. return self.build_type == 'fastdebug'
  452. @property
  453. def is_size_optimized(self):
  454. return self.build_type == 'minsizerel'
  455. @property
  456. def is_coverage(self):
  457. return self.build_type == 'coverage'
  458. @property
  459. def is_sanitized(self):
  460. sanitizer = preset('SANITIZER_TYPE')
  461. return bool(sanitizer) and not is_negative_str(sanitizer)
  462. @property
  463. def with_ndebug(self):
  464. return self.build_type in ('release', 'minsizerel', 'valgrind-release', 'profile', 'gprof', 'debugnoasserts')
  465. @property
  466. def is_valgrind(self):
  467. return self.build_type == 'valgrind' or self.build_type == 'valgrind-release'
  468. @property
  469. def is_ide(self):
  470. return self.is_ide_build_type(self.build_type)
  471. @property
  472. def profiler_type(self):
  473. if self.build_type == 'profile':
  474. return Profiler.Generic
  475. elif self.build_type == 'gprof':
  476. return Profiler.GProf
  477. else:
  478. return None
  479. @staticmethod
  480. def is_ide_build_type(build_type):
  481. return build_type == 'nobuild'
  482. def _configure_runtime_versions(self):
  483. try:
  484. res = subprocess.check_output(['xcrun', 'simctl', 'list', '--json', 'runtimes'])
  485. except subprocess.CalledProcessError as exc:
  486. logger.warning(exc)
  487. return
  488. raw_object = json.loads(res)
  489. raw_object = raw_object['runtimes']
  490. for runtime in raw_object:
  491. if runtime['isAvailable']:
  492. if "iOS" in runtime['identifier']:
  493. emit('DEFAULT_IOS_RUNTIME', '{}'.format(runtime['identifier']))
  494. def _get_toolchain_options(self):
  495. type_ = self.params['params']['type']
  496. if self.params['params'].get('local') and type_ == 'xcode':
  497. detector = CompilerDetector()
  498. detector.detect(self.params['params']['c_compiler'], self.params['params']['cxx_compiler'])
  499. emit('LOCAL_XCODE_TOOLS', 'yes')
  500. emit('XCODE', 'yes')
  501. emit('ACTOOL_PATH', self.params['params']['actool'])
  502. emit('IBTOOL_PATH', self.params['params']['ibtool'])
  503. self._configure_runtime_versions()
  504. elif type_ == 'system_cxx':
  505. detector = CompilerDetector()
  506. detector.detect(self.params['params'].get('c_compiler'), self.params['params'].get('cxx_compiler'))
  507. type_ = detector.type
  508. else:
  509. detector = None
  510. if type_ == 'msvc':
  511. return MSVCToolchainOptions(self, detector)
  512. else:
  513. return GnuToolchainOptions(self, detector)
  514. def _print_other_settings(self, compiler):
  515. host = self.host
  516. emit('USE_LOCAL_TOOLS', 'no' if self.ignore_local_files else 'yes')
  517. ragel = Ragel()
  518. ragel.configure_toolchain(self, compiler)
  519. ragel.print_variables()
  520. swiftc = SwiftCompiler(self)
  521. swiftc.configure()
  522. swiftc.print_compiler()
  523. if host.is_linux or host.is_macos or host.is_cygwin:
  524. if is_negative('USE_ARCADIA_PYTHON'):
  525. python = Python(self.tc)
  526. python.configure_posix()
  527. python.print_variables()
  528. cuda = Cuda(self)
  529. cuda.print_()
  530. CuDNN(cuda).print_()
  531. if self.ignore_local_files or host.is_windows or is_positive('NO_SVN_DEPENDS'):
  532. emit_with_ignore_comment('SVN_DEPENDS')
  533. emit_with_ignore_comment('SVN_DEPENDS_CACHE__NO_UID__')
  534. else:
  535. def find_svn():
  536. for i in range(0, 3):
  537. for path in (['.svn', 'wc.db'], ['.svn', 'entries'], ['.git', 'logs', 'HEAD']):
  538. path_parts = [os.pardir] * i + path
  539. full_path = os.path.join(self.arcadia.root, *path_parts)
  540. # HACK(somov): No "normpath" here. ymake fails with the "source file name is outside the build tree" error
  541. # when .svn/wc.db found in "trunk" instead of "arcadia". But $ARCADIA_ROOT/../.svn/wc.db is ok.
  542. if os.path.exists(full_path):
  543. out_path = os.path.join('${ARCADIA_ROOT}', *path_parts)
  544. return '${input;hide:"%s"}' % out_path
  545. # Special processing for arc repository since .arc may be a symlink.
  546. dot_arc = os.path.realpath(os.path.join(self.arcadia.root, '.arc'))
  547. full_path = os.path.join(dot_arc, 'TREE')
  548. if os.path.exists(full_path):
  549. out_path = os.path.join('${ARCADIA_ROOT}', os.path.relpath(full_path, self.arcadia.root))
  550. return '${input;hide:"%s"}' % out_path
  551. return ''
  552. emit_with_ignore_comment('SVN_DEPENDS', find_svn())
  553. emit_with_ignore_comment('SVN_DEPENDS_CACHE__NO_UID__', '${hide;kv:"disable_cache"}')
  554. @staticmethod
  555. def _load_json_from_base64(base64str):
  556. """
  557. :rtype: dict[str, Any]
  558. """
  559. def un_unicode(o):
  560. if isinstance(o, six.text_type):
  561. return six.ensure_str(o)
  562. if isinstance(o, list):
  563. return [un_unicode(oo) for oo in o]
  564. if isinstance(o, dict):
  565. return {un_unicode(k): un_unicode(v) for k, v in six.iteritems(o)}
  566. return o
  567. return un_unicode(json.loads(base64.b64decode(base64str)))
  568. class YMake(object):
  569. def __init__(self, arcadia):
  570. self.arcadia = arcadia
  571. def print_presets(self):
  572. presets = opts().presets
  573. if is_positive_str(presets.get('EXPORT_GRADLE', 'no')):
  574. print('@import "${CONF_ROOT}/conf/export_gradle.yes.conf"')
  575. else:
  576. print('@import "${CONF_ROOT}/conf/export_gradle.no.conf"')
  577. if presets.get('CLANG_COVERAGE', None) is None:
  578. print('@import "${CONF_ROOT}/conf/coverage_full_instrumentation.conf"')
  579. else:
  580. print('@import "${CONF_ROOT}/conf/coverage_selective_instrumentation.conf"')
  581. if presets:
  582. print('# Variables set from command line by -D options')
  583. for key in sorted(presets):
  584. if key in ('MY_YMAKE_BIN', 'REAL_YMAKE_BIN'):
  585. emit_with_ignore_comment(key, opts().presets[key])
  586. else:
  587. emit(key, opts().presets[key])
  588. @staticmethod
  589. def _print_conf_content(path):
  590. with open(path, 'r') as fin:
  591. print(fin.read())
  592. def print_core_conf(self):
  593. print('@import "${CONF_ROOT}/ymake.core.conf"')
  594. def print_settings(self):
  595. emit_with_ignore_comment('ARCADIA_ROOT', self.arcadia.root)
  596. class System(object):
  597. def __init__(self, platform):
  598. """
  599. :type platform: Platform
  600. """
  601. self.platform = platform
  602. def print_windows_target_const(self):
  603. # TODO(somov): Remove this variables, use generic OS/arch variables in makelists.
  604. emit('WINDOWS', 'yes')
  605. emit('WIN32', 'yes')
  606. if self.platform.is_64_bit == 64:
  607. emit('WIN64', 'yes')
  608. def print_nix_target_const(self):
  609. emit('JAVA_INCLUDE', '-I{0}/include -I{0}/include/{1}'.format('/usr/lib/jvm/default-java', self.platform.os_compat))
  610. emit('UNIX', 'yes')
  611. emit('REALPRJNAME')
  612. emit('SONAME')
  613. def print_target_settings(self):
  614. emit('TARGET_PLATFORM', self.platform.os_compat)
  615. emit('CANONIZED_TARGET_PLATFORM', self.platform.canonized_platform)
  616. emit('HARDWARE_ARCH', '32' if self.platform.is_32_bit else '64')
  617. emit('HARDWARE_TYPE', self.platform.arch)
  618. for variable in self.platform.arch_variables:
  619. emit(variable, 'yes')
  620. for variable in self.platform.os_variables:
  621. emit(variable, 'yes')
  622. if self.platform.is_armv7:
  623. emit('ARM7_FLOAT_ABI', self.platform.armv7_float_abi)
  624. if self.platform.is_android:
  625. emit('ANDROID_API', str(self.platform.android_api))
  626. if self.platform.is_posix:
  627. self.print_nix_target_const()
  628. elif self.platform.is_windows:
  629. self.print_windows_target_const()
  630. def print_host_settings(self):
  631. emit('HOST_PLATFORM', self.platform.os_compat)
  632. emit('CANONIZED_HOST_PLATFORM', self.platform.canonized_platform)
  633. for variable in itertools.chain(self.platform.os_variables, self.platform.arch_variables):
  634. emit('HOST_{var}'.format(var=variable), 'yes')
  635. class CompilerDetector(object):
  636. def __init__(self):
  637. self.type = None
  638. self.c_compiler = None
  639. self.cxx_compiler = None
  640. self.version_list = None
  641. @staticmethod
  642. def preprocess_source(compiler, source):
  643. # noinspection PyBroadException
  644. try:
  645. fd, path = tempfile.mkstemp(suffix='.cpp')
  646. try:
  647. with os.fdopen(fd, 'w') as output:
  648. output.write(source)
  649. stdout, code = get_stdout_and_code([compiler, '-E', path])
  650. except Exception as e:
  651. logger.info("While writing: `%s`", e)
  652. finally:
  653. os.remove(path)
  654. return stdout, code
  655. except Exception as e:
  656. logger.debug('Preprocessing failed: %s', e)
  657. return None, None
  658. @staticmethod
  659. def get_compiler_vars(compiler, names):
  660. prefix = '____YA_VAR_'
  661. source = '\n'.join(['{prefix}{name}={name}\n'.format(prefix=prefix, name=n) for n in names])
  662. # Некоторые препроцессоры возвращают ненулевой код возврата. Поэтому его проверять нельзя.
  663. # Мы можем только удостовериться после разбора stdout, что в нём
  664. # присутствовала хотя бы одна подставленная переменная.
  665. # TODO(somov): Исследовать, можно ли проверять ограниченный набор кодов возврата.
  666. # TODO(v-korovin): Нормально прокидывать Exception-ы, оно и так упадёт
  667. stdout, _ = CompilerDetector.preprocess_source(compiler, source)
  668. if stdout is None:
  669. return None
  670. vars_ = {}
  671. for line in six.ensure_str(stdout).split('\n'):
  672. parts = line.split('=', 1)
  673. if len(parts) == 2 and parts[0].startswith(prefix):
  674. name, value = parts[0][len(prefix):], parts[1]
  675. if value == name:
  676. continue # Preprocessor variable was not substituted
  677. vars_[name] = value
  678. return vars_
  679. def detect(self, c_compiler=None, cxx_compiler=None):
  680. c_compiler = c_compiler or os.environ.get('CC')
  681. cxx_compiler = cxx_compiler or os.environ.get('CXX') or c_compiler
  682. c_compiler = c_compiler or cxx_compiler
  683. logger.debug('e=%s', os.environ)
  684. if c_compiler is None:
  685. raise ConfigureError('Custom compiler was requested but not specified')
  686. c_compiler_path = which(c_compiler)
  687. clang_vars = ['__clang_major__', '__clang_minor__', '__clang_patchlevel__']
  688. gcc_vars = ['__GNUC__', '__GNUC_MINOR__', '__GNUC_PATCHLEVEL__']
  689. msvc_vars = ['_MSC_VER']
  690. apple_var = '__apple_build_version__'
  691. compiler_vars = self.get_compiler_vars(c_compiler_path, clang_vars + [apple_var] + gcc_vars + msvc_vars)
  692. if not compiler_vars:
  693. raise ConfigureError('Could not determine custom compiler version: {}'.format(c_compiler))
  694. def version(version_names):
  695. def iter_version():
  696. for name in version_names:
  697. yield int(compiler_vars[name])
  698. # noinspection PyBroadException
  699. try:
  700. return list(iter_version())
  701. except Exception:
  702. return None
  703. clang_version = version(clang_vars)
  704. apple_build = apple_var in compiler_vars
  705. # TODO(somov): Учитывать номера версий сборки Apple компилятора Clang.
  706. _ = apple_build
  707. gcc_version = version(gcc_vars)
  708. msvc_version = version(msvc_vars)
  709. if clang_version:
  710. logger.debug('Detected Clang version %s', clang_version)
  711. self.type = 'clang'
  712. elif gcc_version:
  713. logger.debug('Detected GCC version %s', gcc_version)
  714. # TODO(somov): Переименовать в gcc.
  715. self.type = 'gnu'
  716. elif msvc_version:
  717. logger.debug('Detected MSVC version %s', msvc_version)
  718. self.type = 'msvc'
  719. else:
  720. raise ConfigureError('Could not determine custom compiler type: {}'.format(c_compiler))
  721. self.version_list = clang_version or gcc_version or msvc_version
  722. self.c_compiler = c_compiler_path
  723. self.cxx_compiler = cxx_compiler and which(cxx_compiler) or c_compiler_path
  724. class ToolchainOptions(object):
  725. def __init__(self, build, detector):
  726. """
  727. :type build: Build
  728. """
  729. self.host = build.host
  730. self.target = build.target
  731. tc_json = build.params
  732. logger.debug('Toolchain host %s', self.host)
  733. logger.debug('Toolchain target %s', self.target)
  734. logger.debug('Toolchain json %s', DebugString(lambda: json.dumps(tc_json, indent=4, sort_keys=True)))
  735. self.params = tc_json['params']
  736. self._name = tc_json.get('name', 'theyknow')
  737. if detector:
  738. self.type = detector.type
  739. self.from_arcadia = False
  740. self.c_compiler = detector.c_compiler
  741. self.cxx_compiler = detector.cxx_compiler
  742. self.compiler_version_list = detector.version_list
  743. self.compiler_version = '.'.join(map(lambda part: six.ensure_str(str(part)), self.compiler_version_list))
  744. else:
  745. self.type = self.params['type']
  746. self.from_arcadia = True
  747. self.c_compiler = self.params['c_compiler']
  748. self.cxx_compiler = self.params['cxx_compiler']
  749. # TODO(somov): Требовать номер версии всегда.
  750. self.compiler_version = self.params.get('gcc_version') or self.params.get('version') or '0'
  751. self.compiler_version_list = list(map(int, self.compiler_version.split('.')))
  752. # 'match_root' at this point contains real name for references via toolchain
  753. self.name_marker = '$(%s)' % self.params.get('match_root', self._name.upper())
  754. self.arch_opt = self.params.get('arch_opt', [])
  755. self.triplet_opt = self.params.get('triplet_opt', {})
  756. self.target_opt = self.params.get('target_opt', [])
  757. # TODO(somov): Убрать чтение настройки из os.environ.
  758. self.werror_mode = preset('WERROR_MODE') or os.environ.get('WERROR_MODE') or self.params.get('werror_mode') or 'compiler_specific'
  759. # default C++ standard is set here, some older toolchains might need to redefine it in ya.conf.json
  760. self.cxx_std = self.params.get('cxx_std', 'c++20')
  761. self._env = tc_json.get('env', {})
  762. self.android_ndk_version = self.params.get('android_ndk_version', None)
  763. logger.debug('c_compiler=%s', self.c_compiler)
  764. logger.debug('cxx_compiler=%s', self.cxx_compiler)
  765. self.compiler_platform_projects = self.target.find_in_dict(self.params.get('platform'), [])
  766. def version_at_least(self, *args):
  767. return args <= tuple(self.compiler_version_list)
  768. def version_exactly(self, *args):
  769. if not args or len(args) > len(self.compiler_version_list):
  770. return False
  771. for left, right in zip(args, list(self.compiler_version_list)[:len(args)]):
  772. if left != right:
  773. return False
  774. return True
  775. @property
  776. def is_gcc(self):
  777. return self.type == 'gnu'
  778. @property
  779. def is_clang(self):
  780. return self.type in ('clang', 'xcode')
  781. @property
  782. def is_xcode(self):
  783. return self.type == 'xcode'
  784. @property
  785. def is_from_arcadia(self):
  786. return self.from_arcadia
  787. @property
  788. def is_system_cxx(self):
  789. return self._name == "system_cxx"
  790. def get_env(self, convert_list=None):
  791. convert_list = convert_list or (lambda x: x)
  792. r = {}
  793. for k, v in six.iteritems(self._env):
  794. if isinstance(v, str):
  795. r[k] = v
  796. elif isinstance(v, list):
  797. r[k] = convert_list(v)
  798. else:
  799. logger.debug('Unexpected values in environment: %s', self._env)
  800. raise ConfigureError('Internal error')
  801. return r
  802. class GnuToolchainOptions(ToolchainOptions):
  803. def __init__(self, build, detector):
  804. super(GnuToolchainOptions, self).__init__(build, detector)
  805. self.ar = self.params.get('ar')
  806. self.ar_plugin = self.params.get('ar_plugin')
  807. self.strip = self.params.get('strip')
  808. self.objcopy = self.params.get('objcopy')
  809. self.objdump = self.params.get('objdump')
  810. self.isystem = self.params.get('isystem')
  811. self.dwarf_tool = self.target.find_in_dict(self.params.get('dwarf_tool'))
  812. # TODO(somov): Унифицировать формат sys_lib
  813. self.sys_lib = self.params.get('sys_lib', {})
  814. if isinstance(self.sys_lib, dict):
  815. self.sys_lib = self.target.find_in_dict(self.sys_lib, [])
  816. self.os_sdk = preset('OS_SDK') or self._default_os_sdk()
  817. self.os_sdk_local = self.os_sdk == 'local'
  818. def _default_os_sdk(self):
  819. if self.target.is_linux:
  820. if self.target.is_armv8:
  821. return 'ubuntu-16'
  822. if self.target.is_armv7 and self.target.armv7_float_abi == 'hard':
  823. return 'ubuntu-16'
  824. if self.target.is_armv7 and self.target.armv7_float_abi == 'softfp':
  825. return 'ubuntu-18'
  826. if self.target.is_powerpc:
  827. return 'ubuntu-14'
  828. # Default OS SDK for Linux builds
  829. return 'ubuntu-14'
  830. class Toolchain(object):
  831. def __init__(self, tc, build):
  832. """
  833. :type tc: ToolchainOptions
  834. :type build: Build
  835. """
  836. self.tc = tc
  837. self.build = build
  838. self.platform_projects = self.tc.compiler_platform_projects
  839. def print_toolchain(self):
  840. if self.platform_projects:
  841. emit('COMPILER_PLATFORM', list(unique(self.platform_projects)))
  842. class Compiler(object):
  843. def __init__(self, tc, compiler_variable):
  844. self.compiler_variable = compiler_variable
  845. self.tc = tc
  846. def print_compiler(self):
  847. # CLANG and CLANG_VER variables
  848. emit(self.compiler_variable, 'yes')
  849. emit('{}_VER'.format(self.compiler_variable), self.tc.compiler_version)
  850. if self.tc.is_xcode:
  851. emit('XCODE', 'yes')
  852. class GnuToolchain(Toolchain):
  853. def __init__(self, tc, build):
  854. """
  855. :type tc: GnuToolchainOptions
  856. :type build: Build
  857. """
  858. def get_os_sdk(target):
  859. sdk_native_version = 10.11 if not preset('EXPERIMENTAL_MACOS_M1_SUPPORT') else '11.1'
  860. if target.is_macos:
  861. return '$MACOS_SDK_RESOURCE_GLOBAL/MacOSX{}.sdk'.format(sdk_native_version)
  862. elif target.is_yocto:
  863. return '$YOCTO_SDK_RESOURCE_GLOBAL'
  864. return '$OS_SDK_ROOT_RESOURCE_GLOBAL'
  865. super(GnuToolchain, self).__init__(tc, build)
  866. self.tc = tc
  867. host = build.host
  868. target = build.target
  869. self.c_flags_platform = list(tc.target_opt)
  870. self.default_os_sdk_root = get_os_sdk(target)
  871. self.env = self.tc.get_env()
  872. self.env_go = {}
  873. if self.tc.is_clang and not self.tc.is_system_cxx:
  874. self.env_go = {'PATH': ['{}/bin'.format(self.tc.name_marker)]}
  875. if self.tc.is_gcc:
  876. self.env_go = {'PATH': ['{}/gcc/bin'.format(self.tc.name_marker)]}
  877. if 'PATH' in self.env_go:
  878. if target.is_linux:
  879. self.env_go['PATH'].append('$OS_SDK_ROOT_RESOURCE_GLOBAL/usr/bin')
  880. elif target.is_macos:
  881. self.env_go['PATH'].extend([
  882. '$MACOS_SDK_RESOURCE_GLOBAL/usr/bin',
  883. '$GO_FAKE_XCRUN_RESOURCE_GLOBAL',
  884. ])
  885. self.swift_flags_platform = []
  886. self.swift_lib_path = None
  887. if self.tc.is_from_arcadia:
  888. for lib_path in build.host.library_path_variables:
  889. self.env.setdefault(lib_path, []).append('{}/lib'.format(self.tc.name_marker))
  890. macos_version_min = '11.0'
  891. ios_version_min = '13.0'
  892. swift_target = select(default=None, selectors=[
  893. (target.is_iossim and target.is_x86_64, 'x86_64-apple-ios{}-simulator'.format(ios_version_min)),
  894. (target.is_iossim and target.is_x86, 'i386-apple-ios{}-simulator'.format(ios_version_min)),
  895. (target.is_iossim and target.is_armv8, 'arm64-apple-ios{}-simulator'.format(ios_version_min)),
  896. (not target.is_iossim and target.is_ios and target.is_armv8, 'arm64-apple-ios9'),
  897. (not target.is_iossim and target.is_ios and target.is_armv7, 'armv7-apple-ios9'),
  898. ])
  899. if swift_target:
  900. self.swift_flags_platform += ['-target', swift_target]
  901. if self.tc.is_from_arcadia:
  902. self.swift_lib_path = select(default=None, selectors=[
  903. (host.is_macos and target.is_iossim, '$SWIFT_XCODE_TOOLCHAIN_ROOT_RESOURCE_GLOBAL/usr/lib/swift/iphonesimulator'),
  904. (host.is_macos and not target.is_iossim and target.is_ios and (target.is_armv8 or target.is_armv7), '$SWIFT_XCODE_TOOLCHAIN_ROOT_RESOURCE_GLOBAL/usr/lib/swift/iphoneos'),
  905. ])
  906. if self.tc.is_clang:
  907. if not self.tc.is_system_cxx:
  908. if 'CLANG' in self.tc.name_marker:
  909. self.c_flags_platform.append('-isystem{}/share/include'.format(self.tc.name_marker))
  910. target_triple = self.tc.triplet_opt.get(target.arch, None)
  911. if not target_triple:
  912. target_triple = select(default=None, selectors=[
  913. (target.is_linux and target.is_x86_64, 'x86_64-linux-gnu'),
  914. (target.is_linux and target.is_armv8, 'aarch64-linux-gnu'),
  915. (target.is_linux and target.is_armv7 and target.armv7_float_abi == 'hard', 'armv7-linux-gnueabihf'),
  916. (target.is_linux and target.is_armv7 and target.armv7_float_abi == 'softfp', 'armv7-linux-gnueabi'),
  917. (target.is_linux and target.is_powerpc, 'powerpc64le-linux-gnu'),
  918. (target.is_iossim and target.is_x86_64, 'x86_64-apple-ios{}-simulator'.format(ios_version_min)),
  919. (target.is_iossim and target.is_x86, 'i386-apple-ios{}-simulator'.format(ios_version_min)),
  920. (target.is_iossim and target.is_armv8, 'arm64-apple-ios{}-simulator'.format(ios_version_min)),
  921. (not target.is_iossim and target.is_ios and target.is_armv8, 'arm64-apple-ios{}'.format(ios_version_min)),
  922. (not target.is_iossim and target.is_ios and target.is_armv7, 'armv7-apple-ios{}'.format(ios_version_min)),
  923. (target.is_apple and target.is_x86, 'i386-apple-darwin14'),
  924. (target.is_apple and target.is_x86_64, 'x86_64-apple-darwin14'),
  925. (target.is_apple and target.is_macos_arm64, 'arm64-apple-macos11'),
  926. (target.is_apple and target.is_armv7, 'armv7-apple-darwin14'),
  927. (target.is_apple and target.is_armv8, 'arm64-apple-darwin14'),
  928. (target.is_yocto and target.is_armv7, 'arm-poky-linux-gnueabi'),
  929. (target.is_android and target.is_x86, 'i686-linux-android'),
  930. (target.is_android and target.is_x86_64, 'x86_64-linux-android'),
  931. (target.is_android and target.is_armv7, 'armv7a-linux-androideabi'),
  932. (target.is_android and target.is_armv8, 'aarch64-linux-android'),
  933. (target.is_emscripten and target.is_wasm64, 'wasm64-unknown-emscripten'),
  934. ])
  935. if target.is_android:
  936. # Android NDK allows specification of API level in target triple, e.g.:
  937. # armv7a-linux-androideabi16, aarch64-linux-android21
  938. target_triple += str(target.android_api)
  939. if target_triple:
  940. self.c_flags_platform.append('--target={}'.format(target_triple))
  941. if self.tc.isystem:
  942. for root in list(self.tc.isystem):
  943. self.c_flags_platform.extend(['-isystem', root])
  944. if target.is_android:
  945. self.c_flags_platform.extend(['-isystem', '{}/sources/cxx-stl/llvm-libc++abi/include'.format(self.tc.name_marker)])
  946. if target.is_cortex_a9:
  947. self.c_flags_platform.append('-mcpu=cortex-a9')
  948. if target.is_cortex_a35:
  949. self.c_flags_platform.append('-mcpu=cortex-a35')
  950. elif target.is_cortex_a53:
  951. self.c_flags_platform.append('-mcpu=cortex-a53')
  952. elif target.is_cortex_m4:
  953. self.c_flags_platform.append('-mcpu=cortex-m4 -mfpu=fpv4-sp-d16')
  954. elif target.is_cortex_m7:
  955. self.c_flags_platform.append('-mcpu=cortex-m7 -mfpu=fpv5-sp-d16')
  956. elif target.is_cortex_m33:
  957. self.c_flags_platform.append('-mcpu=cortex-m33 -mfpu=fpv5-sp-d16')
  958. elif target.is_armv7_neon:
  959. self.c_flags_platform.append('-mfpu=neon')
  960. if (target.is_armv7 or target.is_armv8m or target.is_armv7em) and build.is_size_optimized:
  961. # Enable ARM Thumb2 variable-length instruction encoding
  962. # to reduce code size
  963. self.c_flags_platform.append('-mthumb')
  964. if target.is_arm or target.is_powerpc:
  965. # On linux, ARM and PPC default to unsigned char
  966. # However, Arcadia requires char to be signed
  967. self.c_flags_platform.append('-fsigned-char')
  968. if target.is_rv32imc:
  969. self.c_flags_platform.append('-march=rv32imc')
  970. if self.tc.is_clang or self.tc.is_gcc and self.tc.version_at_least(8, 2):
  971. target_flags = select(default=[], selectors=[
  972. (target.is_linux and target.is_power8le, ['-mcpu=power8', '-mtune=power8', '-maltivec']),
  973. (target.is_linux and target.is_power9le, ['-mcpu=power9', '-mtune=power9', '-maltivec']),
  974. (target.is_linux and target.is_armv8, ['-march=armv8a']),
  975. (target.is_macos, ['-mmacosx-version-min={}'.format(macos_version_min)]),
  976. (target.is_ios and not target.is_iossim, ['-mios-version-min={}'.format(ios_version_min)]),
  977. (target.is_iossim, ['-mios-simulator-version-min={}'.format(ios_version_min)]),
  978. (target.is_android and target.is_armv7, ['-march=armv7-a', '-mfloat-abi=softfp']),
  979. (target.is_android and target.is_armv8, ['-march=armv8-a']),
  980. (target.is_yocto and target.is_armv7, ['-march=armv7-a', '-mfpu=neon', '-mfloat-abi=hard', '-mcpu=cortex-a9', '-O1'])
  981. ])
  982. if target_flags:
  983. self.c_flags_platform.extend(target_flags)
  984. if target.is_ios:
  985. self.c_flags_platform.append('-D__IOS__=1')
  986. if self.tc.is_from_arcadia or self.tc.is_system_cxx:
  987. if target.is_apple:
  988. if target.is_ios:
  989. self.setup_xcode_sdk(project='build/platform/ios_sdk', var='${IOS_SDK_ROOT_RESOURCE_GLOBAL}')
  990. self.platform_projects.append('build/platform/macos_system_stl')
  991. if target.is_macos:
  992. self.setup_xcode_sdk(project='build/platform/macos_sdk', var='${MACOS_SDK_RESOURCE_GLOBAL}')
  993. self.platform_projects.append('build/platform/macos_system_stl')
  994. if target.is_linux:
  995. if not tc.os_sdk_local:
  996. self.setup_sdk(project='build/platform/linux_sdk', var='$OS_SDK_ROOT_RESOURCE_GLOBAL')
  997. if target.is_x86_64:
  998. if host.is_linux and not self.tc.is_gcc:
  999. self.setup_tools(project='build/platform/linux_sdk', var='$OS_SDK_ROOT_RESOURCE_GLOBAL', bin='usr/bin', ldlibs='usr/lib/x86_64-linux-gnu')
  1000. elif host.is_macos:
  1001. self.setup_tools(project='build/platform/binutils', var='$BINUTILS_ROOT_RESOURCE_GLOBAL', bin='x86_64-linux-gnu/bin', ldlibs=None)
  1002. elif target.is_powerpc:
  1003. self.setup_tools(project='build/platform/linux_sdk', var='$OS_SDK_ROOT_RESOURCE_GLOBAL', bin='usr/bin', ldlibs='usr/x86_64-linux-gnu/powerpc64le-linux-gnu/lib')
  1004. elif target.is_armv8:
  1005. self.setup_tools(project='build/platform/linux_sdk', var='$OS_SDK_ROOT_RESOURCE_GLOBAL', bin='usr/bin', ldlibs='usr/lib/x86_64-linux-gnu')
  1006. if target.is_yocto:
  1007. self.setup_sdk(project='build/platform/yocto_sdk/yocto_sdk', var='${YOCTO_SDK_ROOT_RESOURCE_GLOBAL}')
  1008. elif self.tc.params.get('local'):
  1009. if target.is_apple:
  1010. if not tc.os_sdk_local:
  1011. if target.is_ios:
  1012. self.setup_xcode_sdk(project='build/platform/ios_sdk', var='${IOS_SDK_ROOT_RESOURCE_GLOBAL}')
  1013. self.platform_projects.append('build/platform/macos_system_stl')
  1014. if target.is_macos:
  1015. self.setup_xcode_sdk(project='build/platform/macos_sdk', var='${MACOS_SDK_RESOURCE_GLOBAL}')
  1016. self.platform_projects.append('build/platform/macos_system_stl')
  1017. else:
  1018. if target.is_iossim:
  1019. self.env.setdefault('SDKROOT', subprocess.check_output(['xcrun', '-sdk', 'iphonesimulator', '--show-sdk-path']).strip())
  1020. elif target.is_ios:
  1021. self.env.setdefault('SDKROOT', subprocess.check_output(['xcrun', '-sdk', 'iphoneos', '--show-sdk-path']).strip())
  1022. elif target.is_macos:
  1023. self.env.setdefault('SDKROOT', subprocess.check_output(['xcrun', '-sdk', 'macosx', '--show-sdk-path']).strip())
  1024. def setup_sdk(self, project, var):
  1025. self.platform_projects.append(project)
  1026. self.c_flags_platform.append('--sysroot={}'.format(var))
  1027. self.swift_flags_platform += ['-sdk', var]
  1028. def setup_xcode_sdk(self, project, var):
  1029. self.platform_projects.append(project)
  1030. self.c_flags_platform.append('-isysroot')
  1031. self.c_flags_platform.append(var)
  1032. self.swift_flags_platform += ['-sdk', var]
  1033. # noinspection PyShadowingBuiltins
  1034. def setup_tools(self, project, var, bin, ldlibs):
  1035. self.platform_projects.append(project)
  1036. self.c_flags_platform.append('-B{}/{}'.format(var, bin))
  1037. if ldlibs:
  1038. for lib_path in self.build.host.library_path_variables:
  1039. self.env.setdefault(lib_path, []).append('{}/{}'.format(var, ldlibs))
  1040. def print_toolchain(self):
  1041. super(GnuToolchain, self).print_toolchain()
  1042. emit('TOOLCHAIN_ENV', format_env(self.env, list_separator=':'))
  1043. emit('_GO_TOOLCHAIN_ENV_PATH', format_env(self.env_go, list_separator=':'))
  1044. emit('C_FLAGS_PLATFORM', self.c_flags_platform)
  1045. emit('SWIFT_FLAGS_PLATFORM', self.swift_flags_platform)
  1046. emit('SWIFT_LD_FLAGS', '-L{}'.format(self.swift_lib_path) if self.swift_lib_path else '')
  1047. emit('PERL_SDK', preset('OS_SDK') or self.tc.os_sdk)
  1048. if preset('OS_SDK') is None:
  1049. emit('OS_SDK', self.tc.os_sdk)
  1050. emit('OS_SDK_ROOT', None if self.tc.os_sdk_local else self.default_os_sdk_root)
  1051. class GnuCompiler(Compiler):
  1052. def __init__(self, tc, build):
  1053. """
  1054. :type tc: GnuToolchainOptions
  1055. :type build: Build
  1056. """
  1057. compiler_variable = 'CLANG' if tc.is_clang else 'GCC'
  1058. super(GnuCompiler, self).__init__(tc, compiler_variable)
  1059. self.build = build
  1060. self.host = self.build.host
  1061. self.target = self.build.target
  1062. self.tc = tc
  1063. self.c_foptions = [
  1064. # Enable C++ exceptions (and allow them to be throw through pure C code)
  1065. '-fexceptions',
  1066. # Enable standard-conforming behavior and generate duplicate symbol error in case of duplicated global constants.
  1067. # See: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85678#c0
  1068. '-fno-common',
  1069. # Split all functions and data into separate sections for DCE and ICF linker passes
  1070. '-ffunction-sections',
  1071. '-fdata-sections'
  1072. ]
  1073. if self.tc.is_clang and self.target.is_linux:
  1074. # Use .init_array instead of .ctors (default for old clang versions)
  1075. # See: https://maskray.me/blog/2021-11-07-init-ctors-init-array
  1076. self.c_foptions.append('-fuse-init-array')
  1077. if self.target.is_xtensa:
  1078. self.c_foptions.append('-mlongcalls')
  1079. if self.tc.is_clang:
  1080. self.c_foptions += [
  1081. # Set up output colorization
  1082. '-fcolor-diagnostics',
  1083. # Enable aligned allocation
  1084. '-faligned-allocation',
  1085. '-fdebug-default-version=4',
  1086. ]
  1087. elif self.tc.is_gcc:
  1088. if self.target.is_xtensa:
  1089. # Xtensa toolchain does not support this flag
  1090. pass
  1091. else:
  1092. self.c_foptions += [
  1093. # Set up output colorization
  1094. '-fdiagnostics-color=always',
  1095. # It looks like there is no way to enable aligned allocation in gcc
  1096. ]
  1097. self.c_warnings = [
  1098. # Enable default warnings subset
  1099. '-Wall',
  1100. '-Wextra',
  1101. ]
  1102. self.cxx_warnings = [
  1103. # Issue a warning if certain overload is hidden due to inheritance
  1104. '-Woverloaded-virtual',
  1105. ]
  1106. # Disable some warnings which will fail compilation at the time
  1107. self.c_warnings += [
  1108. '-Wno-parentheses',
  1109. ]
  1110. self.c_defines = ['${hide:CPP_FAKEID}']
  1111. if self.target.is_android:
  1112. self.c_defines.append('${hide:ANDROID_FAKEID}')
  1113. self.c_defines.extend([
  1114. '-DARCADIA_ROOT=${ARCADIA_ROOT}',
  1115. '-DARCADIA_BUILD_ROOT=${ARCADIA_BUILD_ROOT}',
  1116. ])
  1117. self.c_defines.extend([
  1118. '-D_THREAD_SAFE', '-D_PTHREADS', '-D_REENTRANT',
  1119. '-D_LARGEFILE_SOURCE', '-D__STDC_CONSTANT_MACROS', '-D__STDC_FORMAT_MACROS',
  1120. ])
  1121. if not self.target.is_android:
  1122. # There is no usable _FILE_OFFSET_BITS=64 support in Androids until API 21. And it's incomplete until at least API 24.
  1123. # https://android.googlesource.com/platform/bionic/+/master/docs/32-bit-abi.md
  1124. # Arcadia have API 16 for 32-bit Androids.
  1125. self.c_defines.append('-D_FILE_OFFSET_BITS=64')
  1126. if self.target.is_linux or self.target.is_android or self.target.is_cygwin or self.target.is_none:
  1127. self.c_defines.append('-D_GNU_SOURCE')
  1128. if self.tc.is_clang and self.target.is_linux and self.target.is_x86_64:
  1129. self.c_defines.append('-D_YNDX_LIBUNWIND_ENABLE_EXCEPTION_BACKTRACE')
  1130. self.c_flags = ['$CL_DEBUG_INFO', '$CL_DEBUG_INFO_DISABLE_CACHE__NO_UID__']
  1131. self.c_flags += self.tc.arch_opt + ['-pipe']
  1132. self.sfdl_flags = ['-E', '-C', '-x', 'c++']
  1133. if self.target.is_x86:
  1134. self.c_flags.append('-m32')
  1135. if self.target.is_x86_64:
  1136. self.c_flags.append('-m64')
  1137. self.debug_info_flags = ['-g']
  1138. if self.target.is_linux:
  1139. self.debug_info_flags.append('-ggnu-pubnames')
  1140. self.cross_suffix = '' if is_positive('FORCE_NO_PIC') else '.pic'
  1141. self.optimize = None
  1142. self.configure_build_type()
  1143. if self.tc.is_clang:
  1144. self.sfdl_flags.append('-Qunused-arguments')
  1145. self.c_warnings += [
  1146. '-Wno-implicit-const-int-float-conversion',
  1147. # For nvcc to accept the above.
  1148. '-Wno-unknown-warning-option',
  1149. ]
  1150. self.cxx_warnings += [
  1151. '-Wimport-preprocessor-directive-pedantic',
  1152. '-Wno-ambiguous-reversed-operator',
  1153. '-Wno-defaulted-function-deleted',
  1154. '-Wno-deprecated-anon-enum-enum-conversion',
  1155. '-Wno-deprecated-enum-enum-conversion',
  1156. '-Wno-deprecated-enum-float-conversion',
  1157. '-Wno-deprecated-volatile',
  1158. '-Wno-pessimizing-move',
  1159. '-Wno-return-std-move',
  1160. '-Wno-undefined-var-template',
  1161. ]
  1162. elif self.tc.is_gcc:
  1163. if self.target.is_xtensa:
  1164. # Xtensa toolchain does not support this flags
  1165. pass
  1166. else:
  1167. self.c_foptions.append('-fno-delete-null-pointer-checks')
  1168. self.c_foptions.append('-fabi-version=8')
  1169. def configure_build_type(self):
  1170. if self.build.is_valgrind:
  1171. self.c_defines.append('-DWITH_VALGRIND=1')
  1172. if self.build.is_debug:
  1173. self.c_foptions.append('$FSTACK')
  1174. if self.build.is_fast_debug:
  1175. self.c_flags.append('-Og')
  1176. if self.build.is_release:
  1177. self.c_flags.append('$OPTIMIZE')
  1178. if self.build.is_size_optimized:
  1179. # -Oz is clang's more size-aggressive version of -Os
  1180. # For ARM specifically, clang -Oz is on par with gcc -Os:
  1181. # https://github.com/android/ndk/issues/133#issuecomment-365763507
  1182. if self.tc.is_clang:
  1183. self.optimize = '-Oz'
  1184. else:
  1185. self.optimize = '-Os'
  1186. # Generate sections with address significance tables for ICF linker pass
  1187. if self.tc.is_clang:
  1188. self.c_foptions.extend(['-faddrsig'])
  1189. else:
  1190. self.optimize = '-O3'
  1191. if self.build.with_ndebug:
  1192. self.c_defines.append('-DNDEBUG')
  1193. else:
  1194. self.c_defines.append('-UNDEBUG')
  1195. if self.build.profiler_type in (Profiler.Generic, Profiler.GProf):
  1196. self.c_foptions.append('-fno-omit-frame-pointer')
  1197. if self.build.profiler_type == Profiler.GProf:
  1198. self.c_flags.append('-pg')
  1199. def print_compiler(self):
  1200. super(GnuCompiler, self).print_compiler()
  1201. emit('C_COMPILER_UNQUOTED', self.tc.c_compiler)
  1202. emit('OPTIMIZE', self.optimize)
  1203. emit('WERROR_MODE', self.tc.werror_mode)
  1204. emit('_C_FLAGS', self.c_flags)
  1205. emit('_C_FOPTIONS', self.c_foptions)
  1206. emit('_CXX_STD', '-std={}'.format(self.tc.cxx_std))
  1207. append('C_DEFINES', self.c_defines)
  1208. append('C_WARNING_OPTS', self.c_warnings)
  1209. append('CXX_WARNING_OPTS', self.cxx_warnings)
  1210. emit('CXX_COMPILER_UNQUOTED', self.tc.cxx_compiler)
  1211. # TODO(somov): Убрать чтение настройки из os.environ
  1212. emit('USE_ARC_PROFILE', 'yes' if preset('USE_ARC_PROFILE') or os.environ.get('USE_ARC_PROFILE') else 'no')
  1213. emit('DEBUG_INFO_FLAGS', self.debug_info_flags)
  1214. if self.build.is_coverage:
  1215. emit('_IS_COVERAGE', 'yes')
  1216. if self.tc.is_clang and self.tc.version_at_least(9):
  1217. emit('_HAS_TIME_TRACE', 'yes')
  1218. print('@import "${CONF_ROOT}/conf/compilers/gnu_compiler.conf"')
  1219. class SwiftCompiler(object):
  1220. def __init__(self, build):
  1221. self.host = build.host
  1222. self.compiler = None
  1223. def configure(self):
  1224. if self.host.is_macos:
  1225. self.compiler = '$SWIFT_XCODE_TOOLCHAIN_ROOT_RESOURCE_GLOBAL/usr/bin/swiftc'
  1226. def print_compiler(self):
  1227. emit('SWIFT_COMPILER', self.compiler or '')
  1228. class Linker(object):
  1229. BFD = 'bfd'
  1230. LLD = 'lld'
  1231. GOLD = 'gold'
  1232. def __init__(self, tc, build):
  1233. """
  1234. :type tc: ToolchainOptions
  1235. :type build: Build
  1236. """
  1237. self.tc = tc
  1238. self.build = build
  1239. self.type = self._get_default_linker_type()
  1240. def _get_default_linker_type(self):
  1241. if not self.tc.is_from_arcadia or is_positive('EXPORT_CMAKE'):
  1242. # External (e.g. system) toolchain: disable linker selection logic
  1243. return None
  1244. if self.build.target.is_android:
  1245. # Android toolchain is NDK, LLD works on all supported platforms
  1246. return Linker.LLD
  1247. elif self.build.target.is_linux or self.build.target.is_macos or self.build.target.is_ios or self.build.target.is_wasm:
  1248. return Linker.LLD
  1249. # There is no linker choice on Windows (link.exe)
  1250. return None
  1251. def print_linker(self):
  1252. self._print_linker_selector()
  1253. def _print_linker_selector(self):
  1254. # if self.type is None then _DEFAULT_LINKER is set to empty string value
  1255. emit('_DEFAULT_LINKER_ID', self.type)
  1256. class LD(Linker):
  1257. def __init__(self, tc, build):
  1258. """
  1259. :type tc: GnuToolchainOptions
  1260. :type build: Build
  1261. """
  1262. super(LD, self).__init__(tc, build)
  1263. self.build = build
  1264. self.host = self.build.host
  1265. self.target = self.build.target
  1266. self.tc = tc
  1267. target = self.target
  1268. self.ar = preset('AR') or self.tc.ar
  1269. self.ar_plugin = self.tc.ar_plugin
  1270. self.strip = self.tc.strip
  1271. self.objcopy = self.tc.objcopy
  1272. self.objdump = self.tc.objdump
  1273. self.musl = Setting('MUSL', convert=to_bool)
  1274. if self.ar is None:
  1275. if self.tc.is_from_arcadia:
  1276. if self.tc.is_clang:
  1277. self.ar = '{}/bin/llvm-ar'.format(self.tc.name_marker)
  1278. if self.tc.is_gcc:
  1279. self.ar = '{}/gcc/bin/gcc-ar'.format(self.tc.name_marker)
  1280. else:
  1281. self.ar = 'ar'
  1282. self.ar_type = 'GNU_AR'
  1283. self.llvm_ar_format = 'None'
  1284. if 'libtool' in self.ar:
  1285. self.ar_type = 'LIBTOOL'
  1286. elif 'llvm-ar' in self.ar:
  1287. self.ar_type = 'LLVM_AR'
  1288. if target.is_apple:
  1289. self.llvm_ar_format = "darwin"
  1290. else:
  1291. self.llvm_ar_format = "gnu"
  1292. self.ld_flags = []
  1293. if self.musl.value:
  1294. self.ld_flags.extend(['-Wl,--no-as-needed'])
  1295. elif target.is_linux:
  1296. self.ld_flags.extend(['-ldl', '-lrt', '-Wl,--no-as-needed'])
  1297. if self.tc.is_gcc:
  1298. self.ld_flags.extend(('-Wl,-Bstatic', '-latomic', '-Wl,-Bdynamic'))
  1299. elif target.is_android:
  1300. self.ld_flags.extend(['-ldl', '-Wl,--no-as-needed'])
  1301. self.ld_sdk = select(default=None, selectors=[
  1302. # -platform_version <platform> <min_version> <sdk_version>
  1303. (target.is_macos, '-Wl,-platform_version,macos,11.0,11.0'),
  1304. (not target.is_iossim and target.is_ios, '-Wl,-platform_version,ios,11.0,13.1'),
  1305. (target.is_iossim, '-Wl,-platform_version,ios-simulator,14.0,14.5'),
  1306. ])
  1307. if self.build.profiler_type == Profiler.GProf:
  1308. self.ld_flags.append('-pg')
  1309. if self.ld_sdk:
  1310. self.ld_flags.append(self.ld_sdk)
  1311. self.sys_lib = self.tc.sys_lib
  1312. if target.is_android:
  1313. # Use toolchain defaults to link with libunwind/clang_rt.builtins
  1314. self.use_stdlib = '-nostdlib++'
  1315. def print_linker(self):
  1316. super(LD, self).print_linker()
  1317. emit('AR_TOOL', self.ar)
  1318. emit('AR_TYPE', self.ar_type)
  1319. emit('_LD_LLVM_AR_FORMAT', self.llvm_ar_format)
  1320. emit('_LD_AR_PLUGIN', self.ar_plugin or 'None')
  1321. emit('STRIP_TOOL_VENDOR', self.strip)
  1322. emit('OBJCOPY_TOOL_VENDOR', self.objcopy)
  1323. emit('OBJDUMP_TOOL_VENDOR', self.objdump)
  1324. emit('_LD_FLAGS', self.ld_flags)
  1325. emit('_LD_SYS_LIB', self.sys_lib)
  1326. emit('LD_SDK_VERSION', self.ld_sdk)
  1327. dwarf_tool = self.tc.dwarf_tool
  1328. if dwarf_tool is None and self.tc.is_clang and (self.target.is_macos or self.target.is_ios):
  1329. dsymutil = '{}/bin/{}dsymutil'.format(self.tc.name_marker, '' if self.tc.version_at_least(7) else 'llvm-')
  1330. dwarf_tool = '${YMAKE_PYTHON} ${input:"build/scripts/run_llvm_dsymutil.py"} ' + dsymutil
  1331. if self.tc.version_at_least(5, 0):
  1332. dwarf_tool += ' -flat'
  1333. if dwarf_tool is not None:
  1334. emit('DWARF_TOOL', dwarf_tool)
  1335. arch_flag = '--arch={arch}'.format(arch=self.target.os_compat)
  1336. emit('_LD_ARCH_FLAG', arch_flag)
  1337. print('@import "${CONF_ROOT}/conf/linkers/ld.conf"')
  1338. class MSVCToolchainOptions(ToolchainOptions):
  1339. def __init__(self, build, detector):
  1340. super(MSVCToolchainOptions, self).__init__(build, detector)
  1341. # C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\14.14.26428
  1342. self.vc_root = None
  1343. # C:\Program Files (x86)\Windows Kits\10\Include\10.0.14393.0
  1344. self.kit_includes = None
  1345. # C:\Program Files (x86)\Windows Kits\10\Lib\10.0.14393.0
  1346. self.kit_libs = None
  1347. self.under_wine = 'wine' in self.params
  1348. self.system_msvc = 'system_msvc' in self.params
  1349. self.ide_msvs = 'ide_msvs' in self.params
  1350. self.use_clang = self.params.get('use_clang', False)
  1351. self.use_arcadia_toolchain = self.params.get('use_arcadia_toolchain', False)
  1352. self.sdk_version = None
  1353. if build.host.is_windows:
  1354. self.under_wine = False
  1355. if self.ide_msvs:
  1356. bindir = '$(VC_ExecutablePath_x64_x64)\\'
  1357. self.c_compiler = bindir + 'cl.exe'
  1358. self.cxx_compiler = self.c_compiler
  1359. self.link = bindir + 'link.exe'
  1360. self.lib = bindir + 'lib.exe'
  1361. self.masm_compiler = bindir + 'ml64.exe'
  1362. self.vc_root = None
  1363. sdk_dir = '$(WindowsSdkDir)'
  1364. self.sdk_version = '$(WindowsTargetPlatformVersion)'
  1365. self.kit_includes = os.path.join(sdk_dir, 'Include', self.sdk_version)
  1366. self.kit_libs = os.path.join(sdk_dir, 'Lib', self.sdk_version)
  1367. elif detector:
  1368. self.masm_compiler = which('ml64.exe')
  1369. self.link = which('link.exe')
  1370. self.lib = which('lib.exe')
  1371. sdk_dir = os.environ.get('WindowsSdkDir')
  1372. self.sdk_version = os.environ.get('WindowsSDKVersion').replace('\\', '')
  1373. vc_install_dir = os.environ.get('VCToolsInstallDir')
  1374. # fix for cxx_std detection problem introduced in r7740071 when running in native VS toolkit commandline:
  1375. # in that case ya make gets 'system_cxx' configuration name and cxx_std is obviously missing in that config
  1376. # so default 'c++20' is substituted and we need to hotfix it here
  1377. self.cxx_std = 'c++latest'
  1378. if any([x is None for x in (sdk_dir, self.sdk_version, vc_install_dir)]):
  1379. raise ConfigureError('No %WindowsSdkDir%, %WindowsSDKVersion% or %VCINSTALLDIR% present. Please, run vcvars64.bat to setup preferred environment.')
  1380. self.vc_root = os.path.normpath(vc_install_dir)
  1381. self.kit_includes = os.path.normpath(os.path.join(sdk_dir, 'Include', self.sdk_version))
  1382. self.kit_libs = os.path.normpath(os.path.join(sdk_dir, 'Lib', self.sdk_version))
  1383. # TODO(somov): Определять автоматически self.version в этом случае
  1384. else:
  1385. if self.version_at_least(2019):
  1386. self.sdk_version = '10.0.18362.0'
  1387. sdk_dir = '$(WINDOWS_KITS-sbr:1939557911)'
  1388. if is_positive('MSVC20'): # XXX: temporary flag, remove after DTCC-123 is completed
  1389. self.cxx_std = 'c++latest'
  1390. else:
  1391. self.sdk_version = '10.0.16299.0'
  1392. sdk_dir = '$(WINDOWS_KITS-sbr:1379398385)'
  1393. self.vc_root = self.name_marker if not self.use_clang else '$MSVC_FOR_CLANG_RESOURCE_GLOBAL'
  1394. self.kit_includes = os.path.join(sdk_dir, 'Include', self.sdk_version)
  1395. self.kit_libs = os.path.join(sdk_dir, 'Lib', self.sdk_version)
  1396. bindir = os.path.join(self.vc_root, 'bin', 'Hostx64')
  1397. tools_name = select(selectors=[
  1398. (build.target.is_x86, 'x86'),
  1399. (build.target.is_x86_64, 'x64'),
  1400. (build.target.is_armv7, 'arm'),
  1401. ])
  1402. asm_name = select(selectors=[
  1403. (build.target.is_x86, 'ml.exe'),
  1404. (build.target.is_x86_64, 'ml64.exe'),
  1405. (build.target.is_armv7, 'armasm.exe'),
  1406. ])
  1407. def prefix(_type, _path):
  1408. if not self.under_wine:
  1409. return _path
  1410. return '{wine} {type} $WINE_ENV ${{ARCADIA_ROOT}} ${{ARCADIA_BUILD_ROOT}} {path}'.format(
  1411. wine='${YMAKE_PYTHON} ${input:\"build/scripts/run_msvc_wine.py\"} $(WINE_TOOL-sbr:1093314933)/bin/wine64 -v140 ' +
  1412. '${input;hide:\"build/scripts/process_command_files.py\"} ${input;hide:\"build/scripts/process_whole_archive_option.py\"}',
  1413. type=_type,
  1414. path=_path
  1415. )
  1416. self.masm_compiler = prefix('masm', os.path.join(bindir, tools_name, asm_name))
  1417. self.link = prefix('link', os.path.join(bindir, tools_name, 'link.exe'))
  1418. self.lib = prefix('lib', os.path.join(bindir, tools_name, 'lib.exe'))
  1419. class MSVC(object):
  1420. # noinspection PyPep8Naming
  1421. class WindowsVersion(object):
  1422. """
  1423. Predefined values for _WIN32_WINNT macro.
  1424. This macro specifies minimal Windows version required by the binary being build.
  1425. A complete list of the values supported by the Windows SDK can be found at
  1426. https://docs.microsoft.com/en-us/cpp/porting/modifying-winver-and-win32-winnt
  1427. """
  1428. Windows7 = '0x0601'
  1429. Windows8 = '0x0602'
  1430. def __init__(self, tc, build):
  1431. """
  1432. :type tc: MSVCToolchainOptions
  1433. :type build: Build
  1434. """
  1435. if not isinstance(tc, MSVCToolchainOptions):
  1436. raise TypeError('Got {} ({}) instead of an MSVCToolchainOptions'.format(tc, type(tc)))
  1437. self.build = build
  1438. self.tc = tc
  1439. class MSVCToolchain(MSVC, Toolchain):
  1440. def __init__(self, tc, build):
  1441. """
  1442. :type tc: MSVCToolchainOptions
  1443. :param build: Build
  1444. """
  1445. Toolchain.__init__(self, tc, build)
  1446. MSVC.__init__(self, tc, build)
  1447. if self.tc.from_arcadia and not self.tc.ide_msvs:
  1448. self.platform_projects.append('build/platform/msvc')
  1449. if tc.under_wine:
  1450. self.platform_projects.append('build/platform/wine')
  1451. def print_toolchain(self):
  1452. super(MSVCToolchain, self).print_toolchain()
  1453. emit('TOOLCHAIN_ENV', format_env(self.tc.get_env(), list_separator=';'))
  1454. if self.tc.sdk_version:
  1455. emit('WINDOWS_KITS_VERSION', self.tc.sdk_version)
  1456. if self.tc.under_wine:
  1457. emit('_UNDER_WINE', 'yes')
  1458. if self.tc.use_clang:
  1459. emit('CLANG_CL', 'yes')
  1460. if self.tc.ide_msvs:
  1461. emit('IDE_MSVS', 'yes')
  1462. if self.tc.use_arcadia_toolchain:
  1463. emit('USE_ARCADIA_TOOLCHAIN', 'yes')
  1464. emit('_MSVC_TC_KIT_LIBS', self.tc.kit_libs)
  1465. emit('_MSVC_TC_VC_ROOT', self.tc.vc_root)
  1466. print('@import "${CONF_ROOT}/conf/toolchains/msvc_toolchain.conf"')
  1467. class MSVCCompiler(MSVC, Compiler):
  1468. def __init__(self, tc, build):
  1469. Compiler.__init__(self, tc, 'MSVC')
  1470. MSVC.__init__(self, tc, build)
  1471. def print_compiler(self):
  1472. super(MSVCCompiler, self).print_compiler()
  1473. target = self.build.target
  1474. warns_enabled = [
  1475. 4018, # 'expression' : signed/unsigned mismatch
  1476. 4265, # 'class' : class has virtual functions, but destructor is not virtual
  1477. 4296, # 'operator' : expression is always false
  1478. 4431, # missing type specifier - int assumed
  1479. ]
  1480. warns_as_error = [
  1481. 4013, # 'function' undefined; assuming extern returning int
  1482. ]
  1483. warns_disabled = [
  1484. # While this warning corresponds to enabled-by-default -Wmacro-redefinition,
  1485. # it floods clog with abundant amount of log lines,
  1486. # as yvals_core.h from Windows SDK redefines certain
  1487. # which macros logically belong to libcxx
  1488. 4005, # '__cpp_lib_*': macro redefinition.
  1489. # Ne need to recheck this, but it looks like _CRT_USE_BUILTIN_OFFSETOF still makes sense
  1490. 4117, # macro name '_CRT_USE_BUILTIN_OFFSETOF' is reserved, '#define' ignored
  1491. 4127, # conditional expression is constant
  1492. 4200, # nonstandard extension used : zero-sized array in struct/union
  1493. 4201, # nonstandard extension used : nameless struct/union
  1494. 4351, # elements of array will be default initialized
  1495. 4355, # 'this' : used in base member initializer list
  1496. 4503, # decorated name length exceeded, name was truncated
  1497. 4510, # default constructor could not be generated
  1498. 4511, # copy constructor could not be generated
  1499. 4512, # assignment operator could not be generated
  1500. 4554, # check operator precedence for possible error; use parentheses to clarify precedence
  1501. 4610, # 'object' can never be instantiated - user defined constructor required
  1502. 4706, # assignment within conditional expression
  1503. 4800, # forcing value to bool 'true' or 'false' (performance warning)
  1504. 4996, # The POSIX name for this item is deprecated
  1505. 4714, # function marked as __forceinline not inlined
  1506. 4197, # 'TAtomic' : top-level volatile in cast is ignored
  1507. 4245, # 'initializing' : conversion from 'int' to 'ui32', signed/unsigned mismatch
  1508. 4324, # 'ystd::function<void (uint8_t *)>': structure was padded due to alignment specifier
  1509. 5033, # 'register' is no longer a supported storage class
  1510. ]
  1511. defines = [
  1512. '${hide:CPP_FAKEID}',
  1513. # FIXME: This is quick fix to let catboost build from MSVS IDE
  1514. # This place is questionable overall, see YMAKE-437
  1515. '/DARCADIA_ROOT=' + ('${ARCADIA_ROOT}' if not self.tc.ide_msvs else '.'),
  1516. '/DARCADIA_BUILD_ROOT=' + ('${ARCADIA_BUILD_ROOT}' if not self.tc.ide_msvs else '.'),
  1517. '/DWIN32',
  1518. '/D_WIN32',
  1519. '/D_WINDOWS',
  1520. # Define _CRT_*_NO_WARNINGS macros to prevent ucrt from issuing a warning whenever
  1521. # a POSIX-style function is used instead of the alternative Microsoft suggests as a secure / standard replacement
  1522. # (e. g. `strncpy()` instead of `strncpy_s()`, `access()` instead of `_access()`)
  1523. # For details see:
  1524. # https://docs.microsoft.com/en-us/cpp/c-runtime-library/security-features-in-the-crt
  1525. '/D_CRT_SECURE_NO_WARNINGS',
  1526. '/D_CRT_NONSTDC_NO_WARNINGS',
  1527. # Math constants (such as M_PI, M_E, M_SQRT2) are not defined in standard C / C++
  1528. # In order to get them defined by Windows ucrt library,
  1529. # you must first define _USE_MATH_DEFINES before #including <cmath> or math.h>.
  1530. # (NB: glibc defines these macros whenever _XOPEN_SOURCE is defined)
  1531. '/D_USE_MATH_DEFINES',
  1532. '/D__STDC_CONSTANT_MACROS',
  1533. '/D__STDC_FORMAT_MACROS',
  1534. '/D_USING_V110_SDK71_',
  1535. # Below defines are covered at
  1536. # https://docs.microsoft.com/en-us/windows/win32/winprog/using-the-windows-headers#faster-builds-with-smaller-header-files
  1537. # Exclude APIs such as Cryptography, DDE, RPC, Shell, and Windows Sockets (while including <windows.h>)
  1538. '/DWIN32_LEAN_AND_MEAN',
  1539. # Define NOMINMAX to avoid min() and max() macros definition (while including <windows.h>)
  1540. '/DNOMINMAX',
  1541. ]
  1542. cxx_defines = [
  1543. # Use builtin offsetof implementation
  1544. # instead of a crutcy macro defined in ucrt/stddef.h.
  1545. # The latter can not be used in constexpr statements.
  1546. '/D_CRT_USE_BUILTIN_OFFSETOF',
  1547. ]
  1548. if target.is_x86_64:
  1549. defines.extend(('/D_WIN64', '/DWIN64'))
  1550. if target.is_armv7:
  1551. defines.extend(('/D_ARM_WINAPI_PARTITION_DESKTOP_SDK_AVAILABLE', '/D__arm__'))
  1552. winapi_unicode = False
  1553. flags = [
  1554. '/nologo', '/Zm500', '/GR', '/bigobj', '/FC', '/EHs', '/errorReport:prompt', '$MSVC_INLINE_FLAG', '/utf-8',
  1555. # enable standard conforming mode
  1556. '/permissive-'
  1557. ]
  1558. flags += self.tc.arch_opt
  1559. c_warnings = ['/we{}'.format(code) for code in warns_as_error]
  1560. c_warnings += ['/w1{}'.format(code) for code in warns_enabled]
  1561. c_warnings += ['/wd{}'.format(code) for code in warns_disabled]
  1562. cxx_warnings = []
  1563. if self.tc.use_clang:
  1564. flags += [
  1565. # Allow <windows.h> to be included via <Windows.h> in case-sensitive file-systems.
  1566. '-fcase-insensitive-paths',
  1567. # At the time clang-cl identifies itself as MSVC 19.11:
  1568. # (actual value can be found in clang/lib/Driver/ToolChains/MSVC.cpp, the syntax would be like
  1569. # ```
  1570. # MSVT = VersionTuple(19, 11);
  1571. # ```
  1572. #
  1573. # We override this value to match current value of the actual MSVC being used.
  1574. '-fms-compatibility-version=19.21',
  1575. # for msvc compatibility
  1576. # https://clang.llvm.org/docs/UsersManual.html#microsoft-extensions
  1577. '-fdelayed-template-parsing',
  1578. ]
  1579. if target.is_x86:
  1580. flags.append('-m32')
  1581. elif target.is_x86_64:
  1582. flags.append('-m64')
  1583. c_warnings.extend((
  1584. '-Wno-format',
  1585. '-Wno-parentheses',
  1586. '-Wno-unknown-warning-option',
  1587. ))
  1588. cxx_warnings += [
  1589. '-Wimport-preprocessor-directive-pedantic',
  1590. '-Woverloaded-virtual',
  1591. '-Wno-ambiguous-reversed-operator',
  1592. '-Wno-defaulted-function-deleted',
  1593. '-Wno-deprecated-anon-enum-enum-conversion',
  1594. '-Wno-deprecated-enum-enum-conversion',
  1595. '-Wno-deprecated-enum-float-conversion',
  1596. '-Wno-deprecated-volatile',
  1597. '-Wno-undefined-var-template',
  1598. ]
  1599. if self.tc.ide_msvs:
  1600. cxx_warnings += [
  1601. '-Wno-unused-command-line-argument',
  1602. ]
  1603. win_version_min = self.WindowsVersion.Windows7
  1604. defines.append('/D_WIN32_WINNT={0}'.format(win_version_min))
  1605. if winapi_unicode:
  1606. defines += ['/DUNICODE', '/D_UNICODE']
  1607. else:
  1608. defines += ['/D_MBCS']
  1609. vc_include = os.path.join(self.tc.vc_root, 'include') if not self.tc.ide_msvs else "$(VC_VC_IncludePath.Split(';')[0].Replace('\\','/'))"
  1610. if not self.tc.ide_msvs:
  1611. def include_flag(path):
  1612. return '{flag}"{path}"'.format(path=path, flag='/I ' if not self.tc.use_clang else '-imsvc')
  1613. for name in ('shared', 'ucrt', 'um', 'winrt'):
  1614. flags.append(include_flag(os.path.join(self.tc.kit_includes, name)))
  1615. flags.append(include_flag(vc_include))
  1616. if self.tc.use_clang:
  1617. emit('CLANG_CL', 'yes')
  1618. if self.tc.ide_msvs:
  1619. emit('IDE_MSVS', 'yes')
  1620. if self.tc.use_arcadia_toolchain:
  1621. emit('USE_ARCADIA_TOOLCHAIN', 'yes')
  1622. emit('CXX_COMPILER', self.tc.cxx_compiler)
  1623. emit('C_COMPILER', self.tc.c_compiler)
  1624. emit('MASM_COMPILER', self.tc.masm_compiler)
  1625. append('C_DEFINES', defines)
  1626. append('C_WARNING_OPTS', c_warnings)
  1627. emit('_CXX_DEFINES', cxx_defines)
  1628. append('CXX_WARNING_OPTS', cxx_warnings)
  1629. if self.build.is_release:
  1630. emit('CFLAGS_PER_TYPE', '$CFLAGS_RELEASE')
  1631. if self.build.is_debug:
  1632. emit('CFLAGS_PER_TYPE', '$CFLAGS_DEBUG')
  1633. if self.build.is_ide:
  1634. emit('CFLAGS_PER_TYPE', '@[debug|$CFLAGS_DEBUG]@[release|$CFLAGS_RELEASE]')
  1635. emit('_STD_CXX', '/std:{}'.format(self.tc.cxx_std))
  1636. emit('_MSVC_FLAGS', flags)
  1637. ucrt_include = os.path.join(self.tc.kit_includes, 'ucrt') if not self.tc.ide_msvs else "$(UniversalCRT_IncludePath.Split(';')[0].Replace('\\','/'))"
  1638. # clang-cl has '#include_next', and MSVC hasn't. It needs separately specified CRT and VC include directories for libc++ to include second in order standard C and C++ headers.
  1639. if not self.tc.use_clang:
  1640. emit('_CFLAGS_UCRT_VC_INCLUDES', '/DY_UCRT_INCLUDE="%s"' % ucrt_include, '/DY_MSVC_INCLUDE="%s"' % vc_include)
  1641. else:
  1642. emit('_CFLAGS_UCRT_VC_INCLUDES')
  1643. emit('WERROR_MODE', self.tc.werror_mode)
  1644. print('@import "${CONF_ROOT}/conf/compilers/msvc_compiler.conf"')
  1645. class MSVCLinker(MSVC, Linker):
  1646. def __init__(self, tc, build):
  1647. MSVC.__init__(self, tc, build)
  1648. Linker.__init__(self, tc, build)
  1649. def print_linker(self):
  1650. super(MSVCLinker, self).print_linker()
  1651. linker = self.tc.link
  1652. linker_lib = self.tc.lib
  1653. emit('LINK_LIB_CMD', linker_lib)
  1654. emit('LINK_EXE_CMD', linker)
  1655. if self.build.is_release:
  1656. emit('LINK_EXE_FLAGS_PER_TYPE', '$LINK_EXE_FLAGS_RELEASE')
  1657. if self.build.is_debug:
  1658. emit('LINK_EXE_FLAGS_PER_TYPE', '$LINK_EXE_FLAGS_DEBUG')
  1659. if self.build.is_ide and self.tc.ide_msvs:
  1660. emit('LINK_EXE_FLAGS_PER_TYPE', '@[debug|$LINK_EXE_FLAGS_DEBUG]@[release|$LINK_EXE_FLAGS_RELEASE]')
  1661. print('@import "${CONF_ROOT}/conf/linkers/msvc_linker.conf"')
  1662. # TODO(somov): Rename!
  1663. Compilers = {
  1664. 'gnu': (GnuToolchain, GnuCompiler, LD),
  1665. 'clang': (GnuToolchain, GnuCompiler, LD),
  1666. 'xcode': (GnuToolchain, GnuCompiler, LD),
  1667. 'msvc': (MSVCToolchain, MSVCCompiler, MSVCLinker),
  1668. }
  1669. class Ragel(object):
  1670. def __init__(self):
  1671. self.rlgen_flags = []
  1672. self.ragel_flags = []
  1673. self.ragel6_flags = []
  1674. def configure_toolchain(self, build, compiler):
  1675. if isinstance(compiler, MSVCCompiler):
  1676. self.set_default_flags(optimized=False)
  1677. elif isinstance(compiler, GnuCompiler):
  1678. self.set_default_flags(optimized=build.is_release and not build.is_sanitized)
  1679. else:
  1680. raise ConfigureError('Unexpected compiler {}'.format(compiler))
  1681. def set_default_flags(self, optimized):
  1682. if optimized:
  1683. self.rlgen_flags.append('-G2')
  1684. self.ragel6_flags.append('-CG2')
  1685. else:
  1686. self.rlgen_flags.append('-T0')
  1687. self.ragel6_flags.append('-CT0')
  1688. def print_variables(self):
  1689. emit('RLGEN_FLAGS', self.rlgen_flags)
  1690. emit('RAGEL_FLAGS', self.ragel_flags)
  1691. emit('RAGEL6_FLAGS', self.ragel6_flags)
  1692. class Python(object):
  1693. def __init__(self, tc):
  1694. self.python = None
  1695. self.flags = None
  1696. self.ldflags = None
  1697. self.libraries = None
  1698. self.includes = None
  1699. self.tc = tc
  1700. def configure_posix(self, python=None, python_config=None):
  1701. python = python or preset('PYTHON_BIN') or which('python')
  1702. python_config = python_config or preset('PYTHON_CONFIG') or which('python-config')
  1703. if python is None or python_config is None:
  1704. return
  1705. # python-config dumps each option on one line in the specified order
  1706. config = get_stdout([python_config, '--cflags', '--ldflags', '--includes']) or ''
  1707. config = config.split('\n')
  1708. if len(config) < 3:
  1709. return
  1710. self.python = python
  1711. self.flags = config[0]
  1712. self.ldflags = config[1]
  1713. self.includes = config[2]
  1714. # Do not split libraries from ldflags.
  1715. # They are not used separately and get overriden together, so it is safe.
  1716. # TODO(somov): Удалить эту переменную и PYTHON_LIBRARIES из makelist-ов.
  1717. self.libraries = ''
  1718. if preset('USE_ARCADIA_PYTHON') == 'no' and not preset('USE_SYSTEM_PYTHON') and not self.tc.os_sdk_local:
  1719. raise Exception("Use fixed python (see https://clubs.at.yandex-team.ru/arcadia/15392) or set OS_SDK=local flag")
  1720. def print_variables(self):
  1721. variables = Variables({
  1722. 'PYTHON_BIN': self.python,
  1723. 'PYTHON_FLAGS': self.flags,
  1724. 'PYTHON_LDFLAGS': self.ldflags,
  1725. 'PYTHON_LIBRARIES': self.libraries,
  1726. 'PYTHON_INCLUDE': self.includes
  1727. })
  1728. variables.update_from_presets()
  1729. variables.reset_if_any(reset_value='PYTHON-NOT-FOUND')
  1730. variables.emit()
  1731. class Setting(object):
  1732. def __init__(self, key, auto=None, convert=None, rewrite=False):
  1733. self.key = key
  1734. self.auto = auto
  1735. self.convert = convert
  1736. self.preset = preset(key)
  1737. self.from_user = self.preset is not None
  1738. self.rewrite = rewrite
  1739. self._value = Setting.no_value
  1740. @property
  1741. def value(self):
  1742. if self._value is Setting.no_value:
  1743. self._value = self.calculate_value()
  1744. return self._value
  1745. def calculate_value(self):
  1746. if not self.from_user:
  1747. return self.auto if not callable(self.auto) else self.auto()
  1748. else:
  1749. return self.preset if not self.convert else self.convert(self.preset)
  1750. @value.setter
  1751. def value(self, value):
  1752. if self.from_user:
  1753. raise ConfigureError("Variable {key} already set by user to {old}. Can not change it's value to {new}".format(key=self.key, old=self._value, new=value))
  1754. self._value = value
  1755. def emit(self):
  1756. if not self.from_user or self.rewrite:
  1757. emit(self.key, self.value)
  1758. no_value = object()
  1759. class Cuda(object):
  1760. def __init__(self, build):
  1761. """
  1762. :type build: Build
  1763. """
  1764. self.build = build
  1765. self.have_cuda = Setting('HAVE_CUDA', auto=self.auto_have_cuda, convert=to_bool)
  1766. self.cuda_root = Setting('CUDA_ROOT')
  1767. self.cuda_version = Setting('CUDA_VERSION', auto=self.auto_cuda_version, convert=self.convert_major_version, rewrite=True)
  1768. self.use_arcadia_cuda = Setting('USE_ARCADIA_CUDA', auto=self.auto_use_arcadia_cuda, convert=to_bool)
  1769. self.use_arcadia_cuda_host_compiler = Setting('USE_ARCADIA_CUDA_HOST_COMPILER', auto=self.auto_use_arcadia_cuda_host_compiler, convert=to_bool)
  1770. self.cuda_use_clang = Setting('CUDA_USE_CLANG', auto=False, convert=to_bool)
  1771. self.cuda_host_compiler = Setting('CUDA_HOST_COMPILER', auto=self.auto_cuda_host_compiler)
  1772. self.cuda_host_compiler_env = Setting('CUDA_HOST_COMPILER_ENV')
  1773. self.cuda_host_msvc_version = Setting('CUDA_HOST_MSVC_VERSION')
  1774. self.cuda_nvcc_flags = Setting('CUDA_NVCC_FLAGS', auto=[])
  1775. self.peerdirs = ['build/platform/cuda']
  1776. self.nvcc_flags = [
  1777. # Allow __host__, __device__ annotations in lambda declaration.
  1778. "--expt-extended-lambda",
  1779. # Allow host code to invoke __device__ constexpr functions and vice versa
  1780. "--expt-relaxed-constexpr",
  1781. ]
  1782. if not self.have_cuda.value:
  1783. return
  1784. if self.cuda_host_compiler.value:
  1785. self.nvcc_flags.append('--compiler-bindir=$CUDA_HOST_COMPILER')
  1786. if self.use_arcadia_cuda.value:
  1787. self.cuda_root.value = '$CUDA_RESOURCE_GLOBAL'
  1788. if self.build.target.is_linux_x86_64 and self.build.tc.is_clang:
  1789. # TODO(somov): Эта настройка должна приезжать сюда автоматически из другого места
  1790. self.nvcc_flags.append('-I$OS_SDK_ROOT/usr/include/x86_64-linux-gnu')
  1791. def print_(self):
  1792. self.print_variables()
  1793. self.print_macros()
  1794. print('@import "${CONF_ROOT}/conf/compilers/nvcc.conf"')
  1795. def print_variables(self):
  1796. self.have_cuda.emit()
  1797. if not self.have_cuda.value:
  1798. return
  1799. if self.use_arcadia_cuda.value and self.cuda_host_compiler.value is None:
  1800. logger.warning('$USE_ARCADIA_CUDA is set, but no $CUDA_HOST_COMPILER')
  1801. self.setup_vc_root()
  1802. self.cuda_root.emit()
  1803. self.cuda_version.emit()
  1804. self.use_arcadia_cuda.emit()
  1805. self.use_arcadia_cuda_host_compiler.emit()
  1806. self.cuda_use_clang.emit()
  1807. self.cuda_host_compiler.emit()
  1808. self.cuda_host_compiler_env.emit()
  1809. self.cuda_host_msvc_version.emit()
  1810. self.cuda_nvcc_flags.emit()
  1811. emit('NVCC_UNQUOTED', self.build.host.exe('$CUDA_ROOT', 'bin', 'nvcc'))
  1812. emit('NVCC', '${quo:NVCC_UNQUOTED}')
  1813. emit('NVCC_FLAGS', self.nvcc_flags, '$CUDA_NVCC_FLAGS')
  1814. emit('NVCC_OBJ_EXT', '.o' if not self.build.target.is_windows else '.obj')
  1815. def print_macros(self):
  1816. mtime = ' '
  1817. if self.build.host_target[1].is_linux:
  1818. mtime = ' --mtime ${tool:"tools/mtime0"} '
  1819. if not self.cuda_use_clang.value:
  1820. cmd = '$YMAKE_PYTHON ${input:"build/scripts/compile_cuda.py"}' + mtime + '$NVCC $NVCC_FLAGS -c ${input:SRC} -o ${output;suf=${OBJ_SUF}${NVCC_OBJ_EXT}:SRC} ${pre=-I:_C__INCLUDE} --cflags $C_FLAGS_PLATFORM $CXXFLAGS $NVCC_STD $NVCC_CFLAGS $SRCFLAGS ${input;hide:"build/platform/cuda/cuda_runtime_include.h"} $CUDA_HOST_COMPILER_ENV ${kv;hide:"p CC"} ${kv;hide:"pc light-green"}' # noqa E501
  1821. else:
  1822. cmd = '$CXX_COMPILER --cuda-path=$CUDA_ROOT $C_FLAGS_PLATFORM -c ${input:SRC} -o ${output;suf=${OBJ_SUF}${NVCC_OBJ_EXT}:SRC} ${pre=-I:_C__INCLUDE} $CXXFLAGS $SRCFLAGS $TOOLCHAIN_ENV ${kv;hide:"p CU"} ${kv;hide:"pc green"}' # noqa E501
  1823. emit('_SRC_CU_CMD', cmd)
  1824. emit('_SRC_CU_PEERDIR', ' '.join(sorted(self.peerdirs)))
  1825. def have_cuda_in_arcadia(self):
  1826. host, target = self.build.host_target
  1827. if not any((host.is_linux_x86_64, host.is_macos_x86_64, host.is_windows_x86_64, host.is_linux_powerpc)):
  1828. return False
  1829. if host != target:
  1830. if not(host.is_linux_x86_64 and target.is_linux_armv8):
  1831. return False
  1832. if not self.cuda_version.from_user:
  1833. return False
  1834. if self.cuda_version.value in ('8.0', '9.0', '9.1', '9.2', '10.0'):
  1835. raise ConfigureError('CUDA versions 8.x, 9.x and 10.0 are no longer supported.\nSee DEVTOOLS-7108.')
  1836. if self.cuda_version.value in ('10.1', '11.0', '11.1', '11.3', '11.4', '11.8', '12.1'):
  1837. return True
  1838. return False
  1839. def auto_have_cuda(self):
  1840. if is_positive('MUSL'):
  1841. return False
  1842. if self.build.is_sanitized:
  1843. return False
  1844. if self.build.host_target[1].is_macos_x86_64 or self.build.host_target[1].is_macos_arm64:
  1845. # DEVTOOLSSUPPORT-19178 CUDA is rarely needed on Mac. Disable it by default but allow explicit builds with CUDA.
  1846. return False
  1847. return self.cuda_root.from_user or self.use_arcadia_cuda.value and self.have_cuda_in_arcadia()
  1848. def auto_cuda_version(self):
  1849. if self.use_arcadia_cuda.value:
  1850. return '10.1'
  1851. if not self.have_cuda.value:
  1852. return None
  1853. nvcc_exe = self.build.host.exe(os.path.expanduser(self.cuda_root.value), 'bin', 'nvcc')
  1854. def error():
  1855. raise ConfigureError('Failed to get CUDA version from {}'.format(nvcc_exe))
  1856. version_output = get_stdout([nvcc_exe, '--version']) or error()
  1857. match = re.search(r'^Cuda compilation tools, release (\d+)\.\d+,', version_output, re.MULTILINE) or error()
  1858. return match.group(1)
  1859. def convert_major_version(self, value):
  1860. if value == '10':
  1861. return '10.1'
  1862. elif value == '11':
  1863. return '11.3'
  1864. else:
  1865. return value
  1866. def auto_use_arcadia_cuda(self):
  1867. return not self.cuda_root.from_user
  1868. def auto_use_arcadia_cuda_host_compiler(self):
  1869. return not self.cuda_host_compiler.from_user and not self.cuda_use_clang.value
  1870. def auto_cuda_host_compiler(self):
  1871. if not self.use_arcadia_cuda_host_compiler.value:
  1872. return None
  1873. host, target = self.build.host_target
  1874. if host.is_windows_x86_64 and target.is_windows_x86_64:
  1875. return self.cuda_windows_host_compiler()
  1876. return select((
  1877. (host.is_linux_x86_64 and target.is_linux_x86_64, '$CUDA_HOST_TOOLCHAIN_RESOURCE_GLOBAL/bin/clang'),
  1878. (host.is_linux_x86_64 and target.is_linux_armv8, '$CUDA_HOST_TOOLCHAIN_RESOURCE_GLOBAL/bin/clang'),
  1879. (host.is_linux_powerpc and target.is_linux_powerpc, '$CUDA_HOST_TOOLCHAIN_RESOURCE_GLOBAL/bin/clang'),
  1880. (host.is_macos_x86_64 and target.is_macos_x86_64, '$CUDA_HOST_TOOLCHAIN_RESOURCE_GLOBAL/usr/bin/clang'),
  1881. ))
  1882. def cuda_windows_host_compiler(self):
  1883. vc_version = '14.28.29910'
  1884. env = {
  1885. 'Y_VC_Version': vc_version,
  1886. 'Y_VC_Root': '$CUDA_HOST_TOOLCHAIN_RESOURCE_GLOBAL/VC/Tools/MSVC/{}'.format(vc_version),
  1887. 'Y_SDK_Version': self.build.tc.sdk_version,
  1888. 'Y_SDK_Root': '$WINDOWS_KITS_RESOURCE_GLOBAL',
  1889. }
  1890. if not self.build.tc.ide_msvs:
  1891. self.peerdirs.append('build/platform/msvc')
  1892. self.cuda_host_compiler_env.value = format_env(env)
  1893. self.cuda_host_msvc_version.value = vc_version
  1894. return '%(Y_VC_Root)s/bin/HostX64/x64/cl.exe' % env
  1895. def setup_vc_root(self):
  1896. if not self.cuda_host_compiler.from_user:
  1897. return # Already set in cuda_windows_host_compiler()
  1898. if self.cuda_host_compiler_env.from_user:
  1899. return # We won't override user setting
  1900. def is_root(dir):
  1901. return all(os.path.isdir(os.path.join(dir, name)) for name in ('bin', 'include', 'lib'))
  1902. def get_root():
  1903. path, old_path = os.path.normpath(self.cuda_host_compiler.value), None
  1904. while path != old_path:
  1905. if is_root(path):
  1906. return path
  1907. path, old_path = os.path.dirname(path), path
  1908. vc_root = get_root()
  1909. if vc_root:
  1910. self.cuda_host_compiler_env.value = format_env({'Y_VC_Root': vc_root})
  1911. class CuDNN(object):
  1912. def __init__(self, cuda):
  1913. """
  1914. :type cuda: Cuda
  1915. """
  1916. self.cuda = cuda
  1917. self.cudnn_version = Setting('CUDNN_VERSION', auto=self.auto_cudnn_version)
  1918. def have_cudnn(self):
  1919. return self.cudnn_version.value in ('7.6.5', '8.0.5')
  1920. def auto_cudnn_version(self):
  1921. return '7.6.5'
  1922. def print_(self):
  1923. if self.cuda.have_cuda.value and self.have_cudnn():
  1924. self.cudnn_version.emit()
  1925. def customization():
  1926. if not is_positive('DISABLE_YMAKE_CONF_CUSTOMIZATION'):
  1927. try:
  1928. sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'internal'))
  1929. from custom_conf import CustomConf
  1930. logger.debug('Customization extension was successfully loaded')
  1931. return CustomConf
  1932. except Exception as e:
  1933. logger.debug('Customization extension was not found; [{}]'.format(str(e)))
  1934. else:
  1935. logger.debug('Customization extension was disabled')
  1936. class DummyConf:
  1937. def __init__(self, options):
  1938. pass
  1939. def print_prologue(self):
  1940. pass
  1941. def print_epilogue(self):
  1942. pass
  1943. return DummyConf
  1944. def main():
  1945. options = opts()
  1946. CustomConfig = customization()
  1947. custom_conf = CustomConfig(options)
  1948. arcadia = Arcadia(options.arcadia_root)
  1949. ymake = YMake(arcadia)
  1950. ymake.print_core_conf()
  1951. _INTERNAL_CONF = 'internal/conf/internal.conf'
  1952. internal_conf_full_path = find_conf(_INTERNAL_CONF)
  1953. if internal_conf_full_path and not is_positive('DISABLE_YMAKE_CONF_CUSTOMIZATION'):
  1954. print('@import "${{CONF_ROOT}}/{}"'.format(_INTERNAL_CONF))
  1955. custom_conf.print_prologue()
  1956. ymake.print_presets()
  1957. ymake.print_settings()
  1958. build = Build(arcadia, options.build_type, options.toolchain_params, force_ignore_local_files=not options.local_distbuild)
  1959. build.print_build()
  1960. custom_conf.print_epilogue()
  1961. emit_with_ignore_comment('CONF_SCRIPT_DEPENDS', __file__)
  1962. if __name__ == '__main__':
  1963. main()