forked from OSchip/llvm-project
				
			
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C++
		
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C++
		
	
	
	
//===--- AVR.cpp - AVR ToolChain Implementations ----------------*- C++ -*-===//
 | 
						|
//
 | 
						|
//                     The LLVM Compiler Infrastructure
 | 
						|
//
 | 
						|
// This file is distributed under the University of Illinois Open Source
 | 
						|
// License. See LICENSE.TXT for details.
 | 
						|
//
 | 
						|
//===----------------------------------------------------------------------===//
 | 
						|
 | 
						|
#include "AVR.h"
 | 
						|
#include "CommonArgs.h"
 | 
						|
#include "InputInfo.h"
 | 
						|
#include "clang/Driver/Compilation.h"
 | 
						|
#include "llvm/Option/ArgList.h"
 | 
						|
 | 
						|
using namespace clang::driver;
 | 
						|
using namespace clang::driver::toolchains;
 | 
						|
using namespace clang::driver::tools;
 | 
						|
using namespace clang;
 | 
						|
using namespace llvm::opt;
 | 
						|
 | 
						|
/// AVR Toolchain
 | 
						|
AVRToolChain::AVRToolChain(const Driver &D, const llvm::Triple &Triple,
 | 
						|
                           const ArgList &Args)
 | 
						|
  : Generic_ELF(D, Triple, Args) { }
 | 
						|
Tool *AVRToolChain::buildLinker() const {
 | 
						|
  return new tools::AVR::Linker(*this);
 | 
						|
}
 | 
						|
 | 
						|
void AVR::Linker::ConstructJob(Compilation &C, const JobAction &JA,
 | 
						|
                               const InputInfo &Output,
 | 
						|
                               const InputInfoList &Inputs,
 | 
						|
                               const ArgList &Args,
 | 
						|
                               const char *LinkingOutput) const {
 | 
						|
 | 
						|
  std::string Linker = getToolChain().GetProgramPath(getShortName());
 | 
						|
  ArgStringList CmdArgs;
 | 
						|
  AddLinkerInputs(getToolChain(), Inputs, Args, CmdArgs, JA);
 | 
						|
  CmdArgs.push_back("-o");
 | 
						|
  CmdArgs.push_back(Output.getFilename());
 | 
						|
  C.addCommand(llvm::make_unique<Command>(JA, *this, Args.MakeArgString(Linker),
 | 
						|
                                          CmdArgs, Inputs));
 | 
						|
}
 | 
						|
// AVR tools end.
 |