summaryrefslogtreecommitdiff
path: root/tools/gccld/gccld.sh
blob: 9ec9305379511161c9858bd7f2c2dcd3ad7e75bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/sh
##===- tools/gccld/gccld.sh ------------------------------------*- bash -*-===##
# 
#                     The LLVM Compiler Infrastructure
#
# This file was developed by Reid Spencer and is distributed under the
# University of Illinois Open Source License. See LICENSE.TXT for details.
# 
##===----------------------------------------------------------------------===##
#
# Synopsis: This shell script is a replacement for the old "gccld" tool that
#           existed in LLVM versions before 2.0. The functionality of gccld has
#           now been moved to llvm-ld. This shell script provides backwards 
#           compatibility so build environments invoking gccld can still get 
#           link (under the covers) with llvm-ld.
#
# Syntax:   gccld OPTIONS... (see llvm-ld for details)
# 
##===----------------------------------------------------------------------===##
#
echo "gccld: This tool is deprecated, please use llvm-ld" 1>&2
TOOLDIR=@TOOLDIR@
$TOOLDIR/llvm-ld "$@"