[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Binutils release 2.40 require texinfo due to missing gas .info files
From: |
Nick Clifton |
Subject: |
Re: Binutils release 2.40 require texinfo due to missing gas .info files |
Date: |
Tue, 21 Feb 2023 13:42:46 +0000 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.7.1 |
Hi Benson,
The current binutils release 2.40 requires texinfo to build from source
because gas does not have .info files.
I believe that it does:
% tar tvf binutils-2.40.tar.xz | grep as.info
-rw-rw-rw- root/root 1220923 2023-01-14 00:00 binutils-2.40/gas/doc/as.info
Typically texinfo is only needed
if the .texi files are modified as releases should contain .info files.
But when you extract files from a tarball they all end up having the same
creation date, so the make system will believe that it needs to generate
the info files. If you touch the files first then the problem is avoided:
% tar xvf binutils-2.40.tar.xz
% find binutils-2.40 -name "*.info" -exec touch {} \;
Cheers
Nick