mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
New shell script to replace gccld, eventually.
llvm-svn: 34074
This commit is contained in:
parent
010e6e83c5
commit
744fd2ca4b
23
tools/gccld/gccld.sh
Normal file
23
tools/gccld/gccld.sh
Normal file
@ -0,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 "$@"
|
Loading…
x
Reference in New Issue
Block a user