GNU Binutils with patches for OS216
修订版 | db67d458959d211835f78d8f2aebb5ae84eb42e7 (tree) |
---|---|
时间 | 2018-06-18 22:37:47 |
作者 | Simon Marchi <simon.marchi@eric...> |
Commiter | Simon Marchi |
configure.ac: Sync with GCC
Here's an extra one... I'll need to make some changes to the root
configure.ac. This patch makes sure it is in sync with GCC first.
ChangeLog:
* configure.ac: Sync with GCC, remove MPX-related things.
@@ -1,3 +1,7 @@ | ||
1 | +2018-06-18 Simon Marchi <simon.marchi@ericsson.com> | |
2 | + | |
3 | + * configure.ac: Sync with GCC, remove MPX-related things. | |
4 | + | |
1 | 5 | 2018-05-01 Nick Clifton <nickc@redhat.com> |
2 | 6 | |
3 | 7 | * config.guess: Synchronize with config project master sources. |
@@ -157,7 +157,6 @@ target_libraries="target-libgcc \ | ||
157 | 157 | target-libstdc++-v3 \ |
158 | 158 | target-libsanitizer \ |
159 | 159 | target-libvtv \ |
160 | - target-libmpx \ | |
161 | 160 | target-libssp \ |
162 | 161 | target-libquadmath \ |
163 | 162 | target-libgfortran \ |
@@ -601,22 +600,6 @@ if test -d ${srcdir}/libvtv; then | ||
601 | 600 | fi |
602 | 601 | |
603 | 602 | |
604 | -# Enable libmpx on supported systems by request. | |
605 | -if test -d ${srcdir}/libmpx; then | |
606 | - if test x$enable_libmpx = x; then | |
607 | - AC_MSG_CHECKING([for libmpx support]) | |
608 | - if (srcdir=${srcdir}/libmpx; \ | |
609 | - . ${srcdir}/configure.tgt; \ | |
610 | - test "$LIBMPX_SUPPORTED" != "yes") | |
611 | - then | |
612 | - AC_MSG_RESULT([no]) | |
613 | - noconfigdirs="$noconfigdirs target-libmpx" | |
614 | - else | |
615 | - AC_MSG_RESULT([yes]) | |
616 | - fi | |
617 | - fi | |
618 | -fi | |
619 | - | |
620 | 603 | # Disable libhsail-rt on unsupported systems. |
621 | 604 | if test -d ${srcdir}/libhsail-rt; then |
622 | 605 | if test x$enable_libhsail_rt = x; then |
@@ -2696,16 +2679,6 @@ if echo " ${target_configdirs} " | grep " libvtv " > /dev/null 2>&1 && | ||
2696 | 2679 | bootstrap_target_libs=${bootstrap_target_libs}target-libvtv, |
2697 | 2680 | fi |
2698 | 2681 | |
2699 | -# If we are building libmpx and $BUILD_CONFIG contains bootstrap-mpx, | |
2700 | -# bootstrap it. | |
2701 | -if echo " ${target_configdirs} " | grep " libmpx " > /dev/null 2>&1; then | |
2702 | - case "$BUILD_CONFIG" in | |
2703 | - *bootstrap-mpx* ) | |
2704 | - bootstrap_target_libs=${bootstrap_target_libs}target-libmpx, | |
2705 | - ;; | |
2706 | - esac | |
2707 | -fi | |
2708 | - | |
2709 | 2682 | # Determine whether gdb needs tk/tcl or not. |
2710 | 2683 | # Use 'maybe' since enable_gdbtk might be true even if tk isn't available |
2711 | 2684 | # and in that case we want gdb to be built without tk. Ugh! |