summaryrefslogtreecommitdiffstats
path: root/source/slang/slang-emit.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/slang/slang-emit.cpp')
-rw-r--r--source/slang/slang-emit.cpp25
1 files changed, 25 insertions, 0 deletions
diff --git a/source/slang/slang-emit.cpp b/source/slang/slang-emit.cpp
index 205f8ee0e..5a4e8300a 100644
--- a/source/slang/slang-emit.cpp
+++ b/source/slang/slang-emit.cpp
@@ -540,6 +540,31 @@ String emitEntryPoint(
// Now that we've emitted the code for all the declarations in the file,
// it is time to stitch together the final output.
+ {
+ Session* session = compileRequest->getSession();
+
+ // Get the downstream compiler needed for final target
+ PassThroughMode passThru = getDownstreamCompilerRequiredForTarget(targetRequest->target);
+
+ // If generic CPP work out what compiler will actually be used
+ if (passThru == PassThroughMode::GenericCCpp)
+ {
+ CPPCompilerSet* compilerSet = session->requireCPPCompilerSet();
+ CPPCompiler* compiler = compilerSet->getDefaultCompiler();
+ if (compiler)
+ {
+ passThru = getPassThroughModeForCPPCompiler(compiler->getDesc().type);
+ }
+ }
+
+ // If there is a prelude emit it
+ const auto& prelude = compileRequest->getSession()->getDownstreamCompilerPrelude(passThru);
+ if (prelude.getLength() > 0)
+ {
+ sourceWriter.emit(prelude.getUnownedSlice());
+ }
+ }
+
// There may be global-scope modifiers that we should emit now
sourceEmitter->emitPreprocessorDirectives();