• R/O
  • HTTP
  • SSH
  • HTTPS

提交

標籤
無標籤

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

GNU Binutils with patches for OS216


Commit MetaInfo

修訂db67d458959d211835f78d8f2aebb5ae84eb42e7 (tree)
時間2018-06-18 22:37:47
作者Simon Marchi <simon.marchi@eric...>
CommiterSimon Marchi

Log Message

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.

Change Summary

差異

--- a/ChangeLog
+++ b/ChangeLog
@@ -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+
15 2018-05-01 Nick Clifton <nickc@redhat.com>
26
37 * config.guess: Synchronize with config project master sources.
--- a/configure.ac
+++ b/configure.ac
@@ -157,7 +157,6 @@ target_libraries="target-libgcc \
157157 target-libstdc++-v3 \
158158 target-libsanitizer \
159159 target-libvtv \
160- target-libmpx \
161160 target-libssp \
162161 target-libquadmath \
163162 target-libgfortran \
@@ -601,22 +600,6 @@ if test -d ${srcdir}/libvtv; then
601600 fi
602601
603602
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-
620603 # Disable libhsail-rt on unsupported systems.
621604 if test -d ${srcdir}/libhsail-rt; then
622605 if test x$enable_libhsail_rt = x; then
@@ -2696,16 +2679,6 @@ if echo " ${target_configdirs} " | grep " libvtv " > /dev/null 2>&1 &&
26962679 bootstrap_target_libs=${bootstrap_target_libs}target-libvtv,
26972680 fi
26982681
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-
27092682 # Determine whether gdb needs tk/tcl or not.
27102683 # Use 'maybe' since enable_gdbtk might be true even if tk isn't available
27112684 # and in that case we want gdb to be built without tk. Ugh!