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