mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-23 17:32:49 +00:00
be8d735a70
'--temp-dir' always overrides 'save-temps'. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75165 91177308-0d34-0410-b5e6-96231b3b80d8
32 lines
945 B
C++
32 lines
945 B
C++
//===--- Main.cpp - The LLVM Compiler Driver -------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open
|
|
// Source License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Usually this file just includes CompilerDriver/Main.inc, but here we apply
|
|
// some trickery to make the built-in '-save-temps' option hidden and enable
|
|
// '--temp-dir' by default.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/CompilerDriver/BuiltinOptions.h"
|
|
#include "llvm/CompilerDriver/ForceLinkage.h"
|
|
|
|
namespace llvmc {
|
|
int Main(int argc, char** argv);
|
|
}
|
|
|
|
int main(int argc, char** argv) {
|
|
|
|
// HACK
|
|
SaveTemps.setHiddenFlag(llvm::cl::Hidden);
|
|
TempDirname = "tmp-objs";
|
|
|
|
llvmc::ForceLinkage();
|
|
return llvmc::Main(argc, argv);
|
|
}
|