[llvm-commits] CVS: llvm/tools/gccld/gccld.sh
Reid Spencer
reid at x10sys.com
Thu Feb 8 19:09:42 PST 2007
Changes in directory llvm/tools/gccld:
gccld.sh added (r1.1)
---
Log message:
New shell script to replace gccld, eventually.
---
Diffs of the changes: (+23 -0)
gccld.sh | 23 +++++++++++++++++++++++
1 files changed, 23 insertions(+)
Index: llvm/tools/gccld/gccld.sh
diff -c /dev/null llvm/tools/gccld/gccld.sh:1.1
*** /dev/null Thu Feb 8 21:09:36 2007
--- llvm/tools/gccld/gccld.sh Thu Feb 8 21:09:26 2007
***************
*** 0 ****
--- 1,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 "gccas: This tool is deprecated, please use opt"
+ TOOLDIR=@TOOLDIR@
+ $TOOLDIR/llvm-ld "$@"
More information about the llvm-commits
mailing list