mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-07-24 13:53:11 +00:00
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:
@@ -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))
|
||||||
|
|||||||
Reference in New Issue
Block a user