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