diff options
-rw-r--r-- | SConstruct | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct index aa02a5c978c..65f7e6a05f2 100644 --- a/SConstruct +++ b/SConstruct @@ -1645,6 +1645,15 @@ if env.TargetOSIs('posix'): except KeyError: pass + # Python uses APPDATA to determine the location of user installed + # site-packages. If we do not pass this variable down to Python + # subprocesses then anything installed with `pip install --user` + # will be inaccessible leading to import errors. + if env.TargetOSIs('windows'): + appdata = os.getenv('APPDATA', None) + if appdata is not None: + env['ENV']['APPDATA'] = appdata + if env.TargetOSIs('linux') and has_option( "gcov" ): env.Append( CCFLAGS=["-fprofile-arcs", "-ftest-coverage"] ) env.Append( LINKFLAGS=["-fprofile-arcs", "-ftest-coverage"] ) |