This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: [GCC-MELT-387] pre-announce: MELT 0.9.5rc1 plugin for GCC 4.6 & 4.7 pre-release candidate 1 (and help needed on make issues)
Le 29 mars 2012 à 23:03, Basile Starynkevitch a écrit :
> On Thu, 29 Mar 2012 22:45:27 +0200
> Romain Geissler <romain.geissler@gmail.com> wrote:
>
>> MELTGCC_BUILD_WITH_CXX = $(shell grep -q 'define[[:space:]]\+ENABLE_BUILD_WITH_CXX[[:space:]]\+1' \
>> `$(MELTGCC) -print-file-name=plugin/include/auto-host.h` && echo yes)
>>
>
> Thanks; I applied that patch with
>
>
> 2012-03-29 Romain Geissler <romain.geissler@gmail.com>
> * MELT-Plugin-Makefile (MELTGCC_BUILD_WITH_CXX): Better grep.
>
>
> (I will test it tomorrow)
> Cheers.
You've made a typo will copy/pasting part of the line. Look at the dollar $ char
near '=$ (shell)', the space is misplaced. It should be '= $(shell'.
Romain Geissler