]> Git Repo - VerusCoin.git/blob - toolchain-info.sh
Testnet fixes
[VerusCoin.git] / toolchain-info.sh
1 #!/bin/bash
2
3 tools=("gcc-8" "g++-8" "otool" "nm")
4
5 echo "Platform: `uname -a`"
6 echo "-------------------------------------"
7 echo "Tool info:"
8 echo
9 for tool in "${tools[@]}"
10 do
11     echo "$tool location: `which $tool`"
12     echo "$tool version: `$tool --version`"
13     echo
14     echo "-------"
15     echo
16 done
This page took 0.024437 seconds and 4 git commands to generate.