File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change 8
8
9
9
10
10
import multiprocessing
11
+ import os
11
12
12
13
import android .adb .commands
13
14
@@ -380,8 +381,10 @@ def create_argument_parser():
380
381
help = 'the absolute path to CXX, the "clang++" compiler for the '
381
382
'host platform. Default is auto detected.' )
382
383
option ('--cmake-c-launcher' , store_path (executable = True ),
384
+ default = os .environ .get ('C_COMPILER_LAUNCHER' , None ),
383
385
help = 'the absolute path to set CMAKE_C_COMPILER_LAUNCHER' )
384
386
option ('--cmake-cxx-launcher' , store_path (executable = True ),
387
+ default = os .environ .get ('CXX_COMPILER_LAUNCHER' , None ),
385
388
help = 'the absolute path to set CMAKE_CXX_COMPILER_LAUNCHER' )
386
389
option ('--host-lipo' , store_path (executable = True ),
387
390
help = 'the absolute path to lipo. Default is auto detected.' )
You can’t perform that action at this time.
0 commit comments