blob: 0bc26cf92508b193e6fae49619555d9ecf0cb4ba [file] [log] [blame]
Allen Martin2051ff32012-08-15 11:38:53 +00001#!/bin/sh
2#
3# binutils-version [-p] gas-command
4#
5# Prints the binutils version of `gas-command' in a canonical 4-digit form
6# such as `0222' for binutils 2.22
7#
8
9gas="$*"
10
11if [ ${#gas} -eq 0 ]; then
12 echo "Error: No assembler specified."
13 printf "Usage:\n\t$0 <gas-command>\n"
14 exit 1
15fi
16
Masahiro Yamada73c25752014-12-25 11:09:44 +090017version_string=$($gas --version | head -1 | sed -e 's/.*) *\([0-9.]*\).*/\1/' )
18
19MAJOR=$(echo $version_string | cut -d . -f 1)
20MINOR=$(echo $version_string | cut -d . -f 2)
Allen Martin2051ff32012-08-15 11:38:53 +000021
22printf "%02d%02d\\n" $MAJOR $MINOR