diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2014-12-15 11:54:43 +0100 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gcc.gnu.org> | 2014-12-15 11:54:43 +0100 |
commit | 4b4f2e35d0d71a758079bf11e485f737e7f2b8cf (patch) | |
tree | f1633194d56de9a4f584d7032e71716884ae880f /configure.ac | |
parent | f84e7f45f7f8967c82284dc27b545c6fdce6a75b (diff) | |
download | gcc-4b4f2e35d0d71a758079bf11e485f737e7f2b8cf.zip gcc-4b4f2e35d0d71a758079bf11e485f737e7f2b8cf.tar.gz gcc-4b4f2e35d0d71a758079bf11e485f737e7f2b8cf.tar.bz2 |
Build machinery cleanup.
* configure.ac (--enable-as-accelerator-for): Don't set
ENABLE_AS_ACCELERATOR_FOR. Update all users.
* configure: Regenerate.
From-SVN: r218744
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index fd1bdf0..91c9a72 100644 --- a/configure.ac +++ b/configure.ac @@ -289,9 +289,7 @@ esac AC_ARG_ENABLE(as-accelerator-for, [AS_HELP_STRING([--enable-as-accelerator-for=ARG], [build as offload target compiler. - Specify offload host triple by ARG])], -ENABLE_AS_ACCELERATOR_FOR=$enableval, -ENABLE_AS_ACCELERATOR_FOR=no) + Specify offload host triple by ARG])]) AC_ARG_ENABLE(offload-targets, [AS_HELP_STRING([--enable-offload-targets=LIST], @@ -470,7 +468,7 @@ AC_HELP_STRING([[--enable-liboffloadmic[=ARG]]], *) AC_MSG_ERROR([--enable-liboffloadmic=no/host/target]) ;; esac], -[if test "${ENABLE_AS_ACCELERATOR_FOR}" != "no"; then +[if test x"$enable_as_accelerator_for" != x; then case "${target}" in *-intelmic-* | *-intelmicemul-*) enable_liboffloadmic=target |