diff options
Diffstat (limited to 'make/configure.pm')
-rw-r--r-- | make/configure.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make/configure.pm b/make/configure.pm index a89e139c9..2cd5beb60 100644 --- a/make/configure.pm +++ b/make/configure.pm @@ -96,7 +96,7 @@ sub __get_template_settings($$$) { sub __test_compiler($) { my $compiler = shift; return 0 unless run_test("`$compiler`", !system "$compiler -v >/dev/null 2>&1"); - return 0 unless run_test("`$compiler`", test_file($compiler, 'compiler.cpp'), 'compatible'); + return 0 unless run_test("`$compiler`", test_file($compiler, 'compiler.cpp', '-fno-rtti'), 'compatible'); return 1; } |