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/compiler.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/compiler.cpp')
| -rw-r--r-- | source/slang/compiler.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source/slang/compiler.cpp b/source/slang/compiler.cpp index 895c8d159..a003cf33d 100644 --- a/source/slang/compiler.cpp +++ b/source/slang/compiler.cpp @@ -192,8 +192,7 @@ namespace Slang { #if SLANG_ENABLE_DXIL_SUPPORT // Must have dxc - return (session->getOrLoadSharedLibrary(SharedLibraryType::Dxc, nullptr) && - session->getOrLoadSharedLibrary(SharedLibraryType::Dxil, nullptr)) ? SLANG_OK : SLANG_E_NOT_FOUND; + return session->getOrLoadSharedLibrary(SharedLibraryType::Dxc, nullptr) ? SLANG_OK : SLANG_E_NOT_FOUND; #endif break; } |
