File tree 8 files changed +38
-2
lines changed 8 files changed +38
-2
lines changed Original file line number Diff line number Diff line change @@ -36,3 +36,8 @@ def calculate_arch_features(arch_string):
36
36
37
37
if config .have_zlib :
38
38
config .available_features .add ('zlib' )
39
+
40
+ # It is not realistically possible to account for all options that could
41
+ # possibly be present in system and user configuration files, so disable
42
+ # default configs for the test runs.
43
+ config .environment ["CLANG_NO_DEFAULT_CONFIG" ] = "1"
Original file line number Diff line number Diff line change 17
17
"@SHLIBDIR@" , "@LLVM_LIBS_DIR@" ,
18
18
config .environment .get (shlibpath_var ,'' )))
19
19
20
-
21
-
20
+ # It is not realistically possible to account for all options that could
21
+ # possibly be present in system and user configuration files, so disable
22
+ # default configs for the test runs.
23
+ config .environment ["CLANG_NO_DEFAULT_CONFIG" ] = "1"
Original file line number Diff line number Diff line change 16
16
config .environment [shlibpath_var ] = os .path .pathsep .join ((
17
17
"@SHLIBDIR@" , "@LLVM_LIBS_DIR@" ,
18
18
config .environment .get (shlibpath_var ,'' )))
19
+
20
+ # It is not realistically possible to account for all options that could
21
+ # possibly be present in system and user configuration files, so disable
22
+ # default configs for the test runs.
23
+ config .environment ["CLANG_NO_DEFAULT_CONFIG" ] = "1"
Original file line number Diff line number Diff line change 14
14
config .clang_tools_dir ,
15
15
config .llvm_tools_dir ,
16
16
config .environment ['PATH' ]))
17
+
18
+ # It is not realistically possible to account for all options that could
19
+ # possibly be present in system and user configuration files, so disable
20
+ # default configs for the test runs.
21
+ config .environment ["CLANG_NO_DEFAULT_CONFIG" ] = "1"
Original file line number Diff line number Diff line change 17
17
"@SHLIBDIR@" , "@LLVM_LIBS_DIR@" ,
18
18
config .environment .get (shlibpath_var ,'' )))
19
19
20
+ # It is not realistically possible to account for all options that could
21
+ # possibly be present in system and user configuration files, so disable
22
+ # default configs for the test runs.
23
+ config .environment ["CLANG_NO_DEFAULT_CONFIG" ] = "1"
Original file line number Diff line number Diff line change 14
14
config .clang_tools_dir ,
15
15
config .llvm_tools_dir ,
16
16
config .environment ['PATH' ]))
17
+
18
+ # It is not realistically possible to account for all options that could
19
+ # possibly be present in system and user configuration files, so disable
20
+ # default configs for the test runs.
21
+ config .environment ["CLANG_NO_DEFAULT_CONFIG" ] = "1"
Original file line number Diff line number Diff line change 35
35
shlibpath = os .path .pathsep .join ((config .shlibdir , shlibpath ))
36
36
37
37
config .environment [shlibpath_var ] = shlibpath
38
+
39
+ # It is not realistically possible to account for all options that could
40
+ # possibly be present in system and user configuration files, so disable
41
+ # default configs for the test runs.
42
+ config .environment ["CLANG_NO_DEFAULT_CONFIG" ] = "1"
Original file line number Diff line number Diff line change 59
59
# Plugins (loadable modules)
60
60
if config .has_plugins and config .llvm_plugin_ext :
61
61
config .available_features .add ('plugins' )
62
+
63
+ # It is not realistically possible to account for all options that could
64
+ # possibly be present in system and user configuration files, so disable
65
+ # default configs for the test runs.
66
+ config .environment ["CLANG_NO_DEFAULT_CONFIG" ] = "1"
You can’t perform that action at this time.
0 commit comments