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 | ee5b680e8c1d6fb6e940796db1cdfc2b37dca079 (patch) | |
tree | cc6f45b8d51f27b7e5b95f9ece05f2a2edb7231c /tools/gccld | |
parent | b9ef7648b8bc5cb4de2637aac9f9e80ab56b0f5e (diff) |
EXIT STAGE LEFT: gccas, gccld
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80023 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/gccld')
-rw-r--r-- | tools/gccld/Makefile | 29 | ||||
-rw-r--r-- | tools/gccld/gccld.sh | 23 |
2 files changed, 0 insertions, 52 deletions
diff --git a/tools/gccld/Makefile b/tools/gccld/Makefile deleted file mode 100644 index b2d3f73435..0000000000 --- a/tools/gccld/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -##===- tools/gccld/Makefile --------------------------------*- Makefile -*-===## -# -# The LLVM Compiler Infrastructure -# -# This file is distributed under the University of Illinois Open Source -# License. See LICENSE.TXT for details. -# -##===----------------------------------------------------------------------===## - -LEVEL = ../.. - -include $(LEVEL)/Makefile.common - -install-local:: $(PROJ_bindir)/gccld - -$(PROJ_bindir)/gccld : gccld.sh Makefile - $(Echo) Installing gccld shell script. - $(Verb) sed "s#@TOOLDIR@#$(PROJ_bindir)#" $< > $@ - $(Verb) chmod 0755 $@ - -all-local:: $(ToolDir)/gccld - -$(ToolDir)/gccld : gccld.sh Makefile - $(Echo) Making $(ToolDir)/gccld shell script. - $(Verb) sed "s#@TOOLDIR@#$(ToolDir)#" $< > $@ - $(Verb) chmod 0755 $@ - -clean-local:: - $(Verb)$(RM) -f $(ToolDir)/gccld diff --git a/tools/gccld/gccld.sh b/tools/gccld/gccld.sh deleted file mode 100644 index b092607c72..0000000000 --- a/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 "$@" |