diff options
author | Tim Newsome <tim@sifive.com> | 2018-09-07 12:31:38 -0700 |
---|---|---|
committer | Tim Newsome <tim@sifive.com> | 2018-09-07 12:31:38 -0700 |
commit | 9f737e46823e1f8b25ede7a18017d9eb09cb5b73 (patch) | |
tree | 766bd597ea861b5814c873ea6779c9fbc71d5401 | |
parent | 309be117a0d0846aeaef37b2426561135e0abc6d (diff) | |
download | riscv-tools-9f737e46823e1f8b25ede7a18017d9eb09cb5b73.zip riscv-tools-9f737e46823e1f8b25ede7a18017d9eb09cb5b73.tar.gz riscv-tools-9f737e46823e1f8b25ede7a18017d9eb09cb5b73.tar.bz2 |
Check autotools/automake version for OpenOCD build
Hopefully this will cut down on the number of riscv-tools-doesn't-build
questions we get. Sample output:
Starting RISC-V Toolchain build process
OpenOCD build requires at least version 2.74 of autoconf. Aborting.
(Note OpenOCD requires autoconf 2.64, but changed to 2.74 for this
test.)
-rwxr-xr-x | build.sh | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -7,7 +7,17 @@ echo "Starting RISC-V Toolchain build process" +check_version() { + $1 --version | awk "NR==1 {if (\$NF>$2) {exit 0} exit 1}" || ( + echo $3 requires at least version $2 of $1. Aborting. + exit 1 + ) +} + +check_version automake 1.14 "OpenOCD build" +check_version autoconf 2.64 "OpenOCD build" build_project riscv-openocd --prefix=$RISCV --enable-remote-bitbang --enable-jtag_vpi --disable-werror + build_project riscv-fesvr --prefix=$RISCV build_project riscv-isa-sim --prefix=$RISCV --with-fesvr=$RISCV build_project riscv-gnu-toolchain --prefix=$RISCV |