diff options
| author | jsmall-nvidia <jsmall@nvidia.com> | 2019-01-16 21:49:38 -0500 |
|---|---|---|
| committer | Tim Foley <tfoleyNV@users.noreply.github.com> | 2019-01-16 18:49:38 -0800 |
| commit | 0db6e249293b85338acb77f8858c823422949c3f (patch) | |
| tree | 5975fa8b4442a5d72ffc4a26236f5e82b84bff1d /source/slang/dxc-support.cpp | |
| parent | aedf61784606406c090302efd8b7ac668ac997fc (diff) | |
Not finding dxil no longer an error. Outputs a warning. (#781)
* * Allow dxc compilation to take place if dxil is not found.
* Output a warning that output will not be signed.
* Remove .dll from dxil in warning so more applicable cross platform.
Diffstat (limited to 'source/slang/dxc-support.cpp')
| -rw-r--r-- | source/slang/dxc-support.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/source/slang/dxc-support.cpp b/source/slang/dxc-support.cpp index 7fe22191b..7d2d6dc0c 100644 --- a/source/slang/dxc-support.cpp +++ b/source/slang/dxc-support.cpp @@ -64,6 +64,17 @@ namespace Slang return SLANG_FAIL; } + { + if (!session->getSharedLibrary(SharedLibraryType::Dxil)) + { + // If can't load dxil - dxc will not be able to sign output + // Output a suitable warning to the user + auto& sink = entryPoint->compileRequest->mSink; + + sink.diagnose(SourceLoc(), Diagnostics::dxilNotFound); + } + } + ComPtr<IDxcCompiler> dxcCompiler; SLANG_RETURN_ON_FAIL(dxcCreateInstance( CLSID_DxcCompiler, |
