diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-08-25 20:21:09 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-08-25 20:21:09 +0000 |
commit | 4cf325e09068ff36fa680c5460e7be1ff0f8b485 (patch) | |
tree | d6b4a5ddb8367cff06b5afbcb06921da75bc114b /llvm/tools/gccld/gccld.sh | |
parent | 930210446f57334a6bf8f2f2899bdbce023a1119 (diff) | |
download | bcm5719-llvm-4cf325e09068ff36fa680c5460e7be1ff0f8b485.tar.gz bcm5719-llvm-4cf325e09068ff36fa680c5460e7be1ff0f8b485.zip |
EXIT STAGE LEFT: gccas, gccld
llvm-svn: 80023
Diffstat (limited to 'llvm/tools/gccld/gccld.sh')
-rw-r--r-- | llvm/tools/gccld/gccld.sh | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/llvm/tools/gccld/gccld.sh b/llvm/tools/gccld/gccld.sh deleted file mode 100644 index b092607c727..00000000000 --- a/llvm/tools/gccld/gccld.sh +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -##===- tools/gccld/gccld.sh ------------------------------------*- bash -*-===## -# -# The LLVM Compiler Infrastructure -# -# This file 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 "$@" |