mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-20 00:24:58 +08:00
21 lines
359 B
C
21 lines
359 B
C
|
|
/*
|
||
|
|
* Copyright (C) 2023 Intel Corporation
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: MIT
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <string>
|
||
|
|
|
||
|
|
namespace NEO {
|
||
|
|
class CompilerProductHelper;
|
||
|
|
|
||
|
|
namespace CompilerOptions {
|
||
|
|
|
||
|
|
void applyExtraInternalOptions(std::string &internalOptions, const CompilerProductHelper &compilerProductHelper);
|
||
|
|
|
||
|
|
} // namespace CompilerOptions
|
||
|
|
} // namespace NEO
|