Skip to content

Commit 50775cb

Browse files
kolerovyaroslavsadin
authored andcommitted
README.md: Add Autoconf 2.71 to prerequisites
1 parent 8436cdc commit 50775cb

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,27 @@ GNU toolchain for ARC has the same standard prerequisites as an upstream GNU
6464
toolchain as documented in the GNU toolchain user guide or on the [GCC
6565
website](http://gcc.gnu.org/install/prerequisites.html)
6666

67+
### Autoconf
68+
69+
Starting from version 2023.03, Crosstool-NG which is used for building toolchains, requires Autoconf 2.71
70+
instead of 2.67. It may not be available on old Linux distributions. In this case you can build it manually
71+
(use your own prefix):
72+
73+
```shell
74+
wget https://ftp.gnu.org/gnu/autoconf/autoconf-2.71.tar.gz
75+
tar -xf autoconf-2.71.tar.gz
76+
cd autoconf-2.71
77+
./configure --prefix=/tools/autoconf2.71
78+
make
79+
make install
80+
```
81+
82+
Then configure your environment:
83+
84+
```shell
85+
export PATH="/tools/autoconf2.71/bin:$PATH"
86+
```
87+
6788
### Ubuntu 18.04 and newer
6889

6990
```shell

0 commit comments

Comments
 (0)