File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed
library/python/testing/yatest_common/yatest/common Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -362,6 +362,11 @@ def c_compiler_path():
362362 return os .environ .get ("YA_CC" )
363363
364364
365+ def c_compiler_cmd ():
366+ p = c_compiler_path ()
367+ return [p , '-isystem' + os .path .dirname (os .path .dirname (p )) + '/share/include' ]
368+
369+
365370def get_yt_hdd_path (path = None ):
366371 if 'HDD_PATH' in os .environ :
367372 return _join_path (os .environ ['HDD_PATH' ], path )
@@ -374,6 +379,11 @@ def cxx_compiler_path():
374379 return os .environ .get ("YA_CXX" )
375380
376381
382+ def cxx_compiler_cmd ():
383+ p = cxx_compiler_path ()
384+ return [p , '-isystem' + os .path .dirname (os .path .dirname (p )) + '/share/include' ]
385+
386+
377387def global_resources ():
378388 try :
379389 if "YA_GLOBAL_RESOURCES" in os .environ :
You can’t perform that action at this time.
0 commit comments