mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-10-31 08:16:47 +00:00 
			
		
		
		
	doesn't get mingled with the output bytecode. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34089 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			24 lines
		
	
	
		
			991 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			991 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/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 "$@"
 |