mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-04 21:30:49 +00:00
f935dcc26a
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
38 lines
1.1 KiB
C++
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);
|
|
}
|