diff options
author | Richard Henderson <rth@redhat.com> | 2012-01-04 17:35:25 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2012-01-04 17:35:25 -0800 |
commit | 99776ebd5b998562662bc8fd054d20865751a8fa (patch) | |
tree | ed66bfe3f00e27ed5b2a77a416a23ffa7ea37ba2 /configure | |
parent | cbd651333df334be66eb2160e22cfeb84377fba7 (diff) | |
download | gcc-99776ebd5b998562662bc8fd054d20865751a8fa.zip gcc-99776ebd5b998562662bc8fd054d20865751a8fa.tar.gz gcc-99776ebd5b998562662bc8fd054d20865751a8fa.tar.bz2 |
re PR libitm/51072 (Build with --disable-bootstrap fails in libitm)
PR bootstrap/51072
* configure.ac: Disable libitm if c++ is not enabled.
* configure: Rebuild.
From-SVN: r182899
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -6473,6 +6473,14 @@ case ,${enable_languages},:${enable_objc_gc} in ;; esac +# Disable libitm if we're not building C++ +case ,${enable_languages}, in + *,c++) ;; + *) + noconfigdirs="$noconfigdirs target-libitm" + ;; +esac + # Remove the entries in $skipdirs and $noconfigdirs from $configdirs, # $build_configdirs and $target_configdirs. # If we have the source for $noconfigdirs entries, add them to $notsupp. |