2023-11-03 06:55:35 +00:00
|
|
|
/*
|
2025-02-21 15:12:49 +00:00
|
|
|
* Copyright (C) 2023-2025 Intel Corporation
|
2023-11-03 06:55:35 +00:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
|
class CompilerProductHelper;
|
2025-04-01 23:42:36 +00:00
|
|
|
struct HardwareInfo;
|
2023-11-03 06:55:35 +00:00
|
|
|
|
|
|
|
|
namespace CompilerOptions {
|
2025-02-21 15:12:49 +00:00
|
|
|
enum class HeaplessMode;
|
2023-11-03 06:55:35 +00:00
|
|
|
|
2025-04-01 23:42:36 +00:00
|
|
|
void applyExtraInternalOptions(std::string &internalOptions, const HardwareInfo &hwInfo, const CompilerProductHelper &compilerProductHelper, CompilerOptions::HeaplessMode heaplessMode);
|
2023-11-03 06:55:35 +00:00
|
|
|
|
|
|
|
|
} // namespace CompilerOptions
|
|
|
|
|
} // namespace NEO
|