mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 09:14:47 +08:00
Added 'link' option to ocloc CLI, which allows linking of several IR files to single output file. Supported formats of output file are ELF and LLVM BC. Related-To: NEO-6163 Signed-off-by: Patryk Wrobel <patryk.wrobel@intel.com>
15 lines
308 B
C++
15 lines
308 B
C++
/*
|
|
* Copyright (C) 2018-2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
namespace NEO {
|
|
class OfflineCompiler;
|
|
class OfflineLinker;
|
|
} // namespace NEO
|
|
|
|
extern int buildWithSafetyGuard(NEO::OfflineCompiler *compiler);
|
|
extern int linkWithSafetyGuard(NEO::OfflineLinker *linker); |