ymake_conf.py 99 KB

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