llvm-6502/tools/llvmc/example/mcc16/driver/Main.cpp
Sanjiv Gupta f935dcc26a allow mcc16 users to specify --save-temps even though it is hidden by mcc16.
link libstd.so with llvm-ld by default with all the programs user is trying to build.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75460 91177308-0d34-0410-b5e6-96231b3b80d8
2009-07-13 10:56:29 +00:00

38 lines
1.1 KiB
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"
#include "llvm/System/Path.h"
namespace llvmc {
int Main(int argc, char** argv);
}
int main(int argc, char** argv) {
// HACK
SaveTemps.setHiddenFlag(llvm::cl::Hidden);
TempDirname = "tmp-objs";
// Remove the temp dir if already exists.
llvm::sys::Path tempDir;
tempDir = TempDirname;
tempDir.eraseFromDisk(true);
llvmc::ForceLinkage();
return llvmc::Main(argc, argv);
}