From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2928 invoked by alias); 21 Nov 2014 18:20:05 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 2908 invoked by uid 89); 21 Nov 2014 18:20:03 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.0 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.2 X-HELO: DUB004-OMC4S20.hotmail.com Received: from dub004-omc4s20.hotmail.com (HELO DUB004-OMC4S20.hotmail.com) (157.55.2.95) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA256 encrypted) ESMTPS; Fri, 21 Nov 2014 18:20:02 +0000 Received: from DUB118-W3 ([157.55.2.71]) by DUB004-OMC4S20.hotmail.com over TLS secured channel with Microsoft SMTPSVC(7.5.7601.22751); Fri, 21 Nov 2014 10:19:58 -0800 X-TMN: [xglUD+xy9mWFYPRuyeC8Bhv2GteXchqw] Message-ID: From: Bernd Edlinger To: Kirill Yukhin , Andrey Turetskiy CC: Jakub Jelinek , Ilya Verbin , "gcc-patches@gcc.gnu.org" Subject: Re: [PATCH 4/4] OpenMP 4.0 offloading to Intel MIC: non-fallback testing Date: Fri, 21 Nov 2014 18:44:00 -0000 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-SW-Source: 2014-11/txt/msg02826.txt.bz2 Aehm Kirill, excuse me please, but if I do autogen Makefile.def I get this from svn diff Index: Makefile.in =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- Makefile.in=A0=A0=A0 (revision 217890) +++ Makefile.in=A0=A0=A0 (working copy) @@ -35238,9 +35238,6 @@ =A0=A0=A0=A0 $(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/liboffloadmi= c ; \ =A0=A0=A0=A0 $(NORMAL_TARGET_EXPORTS)=A0 \ =A0=A0=A0=A0 echo Configuring in $(TARGET_SUBDIR)/liboffloadmic; \ -=A0=A0=A0 =A0\ -=A0=A0=A0 this_target=3D"${target_alias}"; \ -=A0=A0=A0 =A0\ =A0=A0=A0=A0 cd "$(TARGET_SUBDIR)/liboffloadmic" || exit 1; \ =A0=A0=A0=A0 case $(srcdir) in \ =A0=A0=A0=A0 =A0 /* | [A-Za-z]:[\\/]*) topdir=3D$(srcdir) ;; \ @@ -35248,14 +35245,12 @@ =A0=A0=A0=A0 =A0=A0=A0 sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \ =A0=A0=A0=A0 esac; \ =A0=A0=A0=A0 module_srcdir=3Dliboffloadmic; \ -=A0=A0=A0 srcdiroption=3D"--srcdir=3D$${topdir}/liboffloadmic"; \ -=A0=A0=A0 libsrcdir=3D"$$s/liboffloadmic"; \ =A0=A0=A0=A0 rm -f no-such-file || : ; \ =A0=A0=A0=A0 CONFIG_SITE=3Dno-such-file $(SHELL) \ =A0=A0=A0=A0 =A0 $$s/$$module_srcdir/configure \ =A0=A0=A0=A0 =A0 --srcdir=3D$${topdir}/$$module_srcdir \ =A0=A0=A0=A0 =A0 $(TARGET_CONFIGARGS) --build=3D${build_alias} --host=3D${t= arget_alias} \ -=A0=A0=A0 =A0 --target=3D$${this_target} $${srcdiroption} @extra_liboffloa= dmic_configure_flags@ \ +=A0=A0=A0 =A0 --target=3D${target_alias} @extra_liboffloadmic_configure_fl= ags@ \ =A0=A0=A0=A0 =A0 || exit 1 =A0@endif target-liboffloadmic =A0 svn blame Makefile.in points to: r217498 | kyukhin | 2014-11-13 15:03:17 +0100 (Thu, 13 Nov 2014) | 110 lines [PATCH 2/4] OpenMP 4.0 offloading to Intel MIC: liboffloadmic. =A0=A0=A0 * Makefile.def: Add liboffloadmic to target_modules.=A0 Make =A0=A0=A0 liboffloadmic depend on libgomp's configure, libstdc++ and libgcc. =A0=A0=A0 * Makefile.in: Regenerate. =A0=A0=A0 * configure: Regenerate. =A0=A0=A0 * configure.ac: Add liboffloadmic to target binaries. =A0=A0=A0 Restrict liboffloadmic for POSIX and i*86, and x86_64 architectur= es. =A0=A0=A0 Add liboffloadmic to noconfig list when C++ is not supported. so, did you really regenerate Makefile.in in that patch, or am I missing so= mething ? Regards, Bernd. =20=09=09=20=09=20=20=20=09=09=20=20