summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/CMakeLists.txt2
-rw-r--r--tools/slang-test/parse-diagnostic-util.cpp8
2 files changed, 5 insertions, 5 deletions
diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt
index 8c2221a2b..26ab13909 100644
--- a/tools/CMakeLists.txt
+++ b/tools/CMakeLists.txt
@@ -56,7 +56,7 @@ generator(
USE_FEWER_WARNINGS
LINK_WITH_PRIVATE
prelude
- slang-without-embedded-stdlib
+ slang-without-embedded-core-module
slang-capability-lookup
slang-lookup-tables
Threads::Threads
diff --git a/tools/slang-test/parse-diagnostic-util.cpp b/tools/slang-test/parse-diagnostic-util.cpp
index b0f13b4ee..f5b76a07e 100644
--- a/tools/slang-test/parse-diagnostic-util.cpp
+++ b/tools/slang-test/parse-diagnostic-util.cpp
@@ -449,17 +449,17 @@ static bool _isAtEnd(const UnownedStringSlice& text, const UnownedStringSlice& l
SlangResult resB = ParseDiagnosticUtil::parseDiagnostics(b, diagsB);
/*
- TODO(JS): In the past we needed special handling of the stdlib, when
- in some builds the path contains the stdlib.
+ TODO(JS): In the past we needed special handling of the core module, when
+ in some builds the path contains the core module.
For now we don't seem to need this, this is for future reference, if there
is an issue with needing to specially handle this.
- static const UnownedStringSlice stdLibNames[] =
+ static const UnownedStringSlice coreModuleNames[] =
{
UnownedStringSlice::fromLiteral("core.meta.slang"),
UnownedStringSlice::fromLiteral("hlsl.meta.slang"),
- UnownedStringSlice::fromLiteral("slang-stdlib.cpp"),
+ UnownedStringSlice::fromLiteral("slang-core-module.cpp"),
};
*/