ymake_conf.py 95 KB

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