File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -64,6 +64,27 @@ GNU toolchain for ARC has the same standard prerequisites as an upstream GNU
6464toolchain as documented in the GNU toolchain user guide or on the [ GCC
6565website] ( 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
You can’t perform that action at this time.
0 commit comments