#!/bin/sh -f
#
# Find the directory where libgcc.a is.
#
# gcc prints version info to stderr and the directory we want is in the 
# same directory as the specs file
#

dirname `gcc -v 2>&1 | grep specs | awk '{print $4}'`

