//===---- SectCreate.h -- Emulates ld64's -sectcreate option ----*- C++ -*-===// // // 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 // //===----------------------------------------------------------------------===// // // Emulates ld64's -sectcreate option. // //===----------------------------------------------------------------------===// #ifndef LLVM_EXECUTIONENGINE_ORC_SECTCREATE_H #define LLVM_EXECUTIONENGINE_ORC_SECTCREATE_H #include "llvm/ExecutionEngine/Orc/Core.h" #include "llvm/ExecutionEngine/Orc/ObjectLinkingLayer.h" #include <utility> #include <vector> namespace llvm::orc { class SectCreateMaterializationUnit : public MaterializationUnit { … }; } // namespace llvm::orc #endif // LLVM_EXECUTIONENGINE_ORC_SECTCREATE_H