bug-bison
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Bison-Announce] Bison 3.5.90 released [beta]


From: Denis Excoffier
Subject: Re: [Bison-Announce] Bison 3.5.90 released [beta]
Date: Sat, 18 Apr 2020 15:22:49 +0200


> On 2020-04-18 12:19, Akim Demaille wrote:
> 
> 
> Hi all,
> 
(…)
> Here are the compressed sources:
>  https://alpha.gnu.org/gnu/bison/bison-3.5.90.tar.gz   (5.1MB)
>  https://alpha.gnu.org/gnu/bison/bison-3.5.90.tar.xz   (3.1MB)
> 
> 

Hello,

For compilation it’s ok except for make check, because you may not know
that under Darwin, wc has a few spaces in front of the result, e.g.

% (echo 1; echo 2; echo 3) | wc -l
        3
%

compared to GNU coreutils:
% (echo 1; echo 2; echo 3) | wc -l
3
%

Therefore, because of ‘wc -l’ in calc.at <http://calc.at/>, many tests fail 
(starting with 414).

Replacing
wc -l
with
wc -l | awk ‘{ print $1 }’ -

(or otherwise) ‘make check’ passes ok.

Regards,

Denis Excoffier.

reply via email to

[Prev in Thread] Current Thread [Next in Thread]