]> Git Repo - VerusCoin.git/blame - toolchain-info.sh
Merge pull request #72 from DeckerSU/dev-winpatch-ca333
[VerusCoin.git] / toolchain-info.sh
CommitLineData
e891d64b
JB
1#!/bin/bash
2
3tools=("gcc-5" "g++-5" "otool" "nm")
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.044658 seconds and 4 git commands to generate.