mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
This updates llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp to llvm-project main llvmorg-17-init-19304-gd0b54bb50e51, the last commit before the upstream release/17.x branch was created. PR: 273753 MFC after: 1 month (cherry picked from commit 06c3fb2749bda94cb5201f81ffdb8fa6c3161b2e)
16 lines
612 B
C++
16 lines
612 B
C++
//===-- driver-template.cpp -----------------------------------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/Support/LLVMDriver.h"
|
|
#include "llvm/ADT/ArrayRef.h"
|
|
|
|
int llvm_objcopy_main(int argc, char **, const llvm::ToolContext &);
|
|
|
|
int main(int argc, char **argv) {
|
|
return llvm_objcopy_main(argc, argv, {argv[0], nullptr, false});
|
|
}
|