Dodge 32-bit-clang-specific backtracing failure.
This disables run_tests.sh configurations that use the combination of 32-bit clang and heap profiling.
This commit is contained in:
parent
4a068644c7
commit
25d50a943a
@ -28,6 +28,10 @@ print 'unamestr=`uname`'
|
|||||||
for cc, cxx in possible_compilers:
|
for cc, cxx in possible_compilers:
|
||||||
for compiler_opts in powerset(possible_compiler_opts):
|
for compiler_opts in powerset(possible_compiler_opts):
|
||||||
for config_opts in powerset(possible_config_opts):
|
for config_opts in powerset(possible_config_opts):
|
||||||
|
if cc is 'clang' \
|
||||||
|
and '-m32' in possible_compiler_opts \
|
||||||
|
and '--enable-prof' in config_opts:
|
||||||
|
continue
|
||||||
config_line = (
|
config_line = (
|
||||||
'./configure '
|
'./configure '
|
||||||
+ 'CC="{} {}" '.format(cc, " ".join(compiler_opts))
|
+ 'CC="{} {}" '.format(cc, " ".join(compiler_opts))
|
||||||
|
Loading…
Reference in New Issue
Block a user