2018-06-22 23:38:00 +08:00
|
|
|
/*
|
2022-01-12 23:27:20 +08:00
|
|
|
* Copyright (C) 2018-2022 Intel Corporation
|
2018-06-22 23:38:00 +08:00
|
|
|
*
|
2018-09-18 15:11:08 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2018-06-22 23:38:00 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
2019-03-26 18:59:46 +08:00
|
|
|
namespace NEO {
|
2018-06-22 23:38:00 +08:00
|
|
|
class OfflineCompiler;
|
2022-01-12 23:27:20 +08:00
|
|
|
class OfflineLinker;
|
|
|
|
} // namespace NEO
|
2018-06-22 23:38:00 +08:00
|
|
|
|
2022-01-12 23:27:20 +08:00
|
|
|
extern int buildWithSafetyGuard(NEO::OfflineCompiler *compiler);
|
|
|
|
extern int linkWithSafetyGuard(NEO::OfflineLinker *linker);
|