Skip to content

Commit f2e3257

Browse files
authored
[slangc] generate an error when -entry is not specified for targets that require them. (shader-slang#3679)
* [slangc] generate an error when `-entry` is not specified for targets that require them. * Fix. * Fix.
1 parent 8d4b659 commit f2e3257

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

source/slang/slang-options.cpp

+7-1
Original file line numberDiff line numberDiff line change
@@ -2822,8 +2822,14 @@ SlangResult OptionsParser::_parse(
28222822
if (getCurrentTarget()->optionSet.shouldEmitSPIRVDirectly())
28232823
{
28242824
rawOutput.isWholeProgram = true;
2825+
break;
28252826
}
2826-
break;
2827+
else if (m_rawEntryPoints.getCount() != 0)
2828+
{
2829+
rawOutput.entryPointIndex = (int)m_rawEntryPoints.getCount() - 1;
2830+
break;
2831+
}
2832+
[[fallthrough]];
28272833
default:
28282834
m_sink->diagnose(SourceLoc(), Diagnostics::cannotMatchOutputFileToEntryPoint, rawOutput.path);
28292835
break;

tests/diagnostics/vk-bindings.slang

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// vk-bindings.slang
22

3-
//DIAGNOSTIC_TEST:SIMPLE:-target spirv
3+
//DIAGNOSTIC_TEST:SIMPLE:-entry main -target spirv
44

55
// D3D `register` without VK binding
66
Texture2D t : register(t0);

0 commit comments

Comments
 (0)