fix: add option to enable/disable heapless in ocloc

Related-To: GSD-10681
Signed-off-by: Kamil Kopryk <kamil.kopryk@intel.com>
This commit is contained in:
Kamil Kopryk
2025-02-21 15:12:49 +00:00
committed by Compute-Runtime-Automation
parent b10c6b4703
commit 7c3468794e
8 changed files with 75 additions and 9 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2019-2024 Intel Corporation
* Copyright (C) 2019-2025 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
@@ -184,5 +184,12 @@ std::string wrapInQuotes(const std::string &stringToWrap);
void applyAdditionalInternalOptions(std::string &internalOptions);
void applyAdditionalApiOptions(std::string &apiOptions);
enum class HeaplessMode {
enabled,
disabled,
defaultMode,
};
} // namespace CompilerOptions
} // namespace NEO